Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replacing Fossil Gas in all text, might be good? #131

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified run_all.sh
100644 → 100755
Empty file.
8 changes: 4 additions & 4 deletions src/common-functions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface IBuilding {
Longitude: string;


NaturalGasUse: string;
FossilGasUse: string;
DistrictSteamUse: string;

[buildingKey: string]: string | number | boolean;
Expand All @@ -66,7 +66,7 @@ export interface IHistoricData {
ENERGYSTARScore: string;
GHGIntensity: string;
GrossFloorArea: string;
NaturalGasUse: string;
FossilGasUse: string;
SourceEUI: string;
TotalGHGEmissions: string;
}
Expand Down Expand Up @@ -131,7 +131,7 @@ export const RankedColumns = [
'GHGIntensity',
'TotalGHGEmissions',
'ElectricityUse',
'NaturalGasUse',
'FossilGasUse',
'SourceEUI',
'SiteEUI',
// 'GrossFloorArea',
Expand Down Expand Up @@ -230,7 +230,7 @@ export const UtilityCosts = {
};

/**
* Given an amount of natural gas or electricity used by a building, returns a cost
* Given an amount of fossil gas or electricity used by a building, returns a cost
* estimate of how much a building would have spent at average retail prices for
* that energy.
*
Expand Down
6 changes: 3 additions & 3 deletions src/components/BuildingsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class BuildingsTable extends Vue {
scope="col"
class="numeric wide-col"
>
Natural Gas Use<br>
Fossil Gas Use<br>
<span class="unit">(kBtu)</span>
</th>
<th
Expand Down Expand Up @@ -128,13 +128,13 @@ export default class BuildingsTable extends Vue {
v-if="showGasUse"
class="numeric"
>
<template v-if="edge.node.NaturalGasUse">
<template v-if="edge.node.FossilGasUse">
<RankText
:building="edge.node"
:should-round="true"
:stats="BuildingBenchmarkStats"
:unit="'kBtu'"
stat-key="NaturalGasUse"
stat-key="FossilGasUse"
/>
</template>
<template v-else>
Expand Down
6 changes: 3 additions & 3 deletions src/components/HistoricalBuildingDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Electricity Use <span class="unit">kBTU</span>
</th>
<th scope="col">
Natural Gas Use <span class="unit">kBTU</span>
Fossil Gas Use <span class="unit">kBTU</span>
</th>
<th
v-if="renderedColumns.includes('DistrictSteamUse')"
Expand Down Expand Up @@ -69,7 +69,7 @@

<!-- Round big numbers -->
<td>{{ benchmark.ElectricityUse | optionalInt }}</td>
<td>{{ benchmark.NaturalGasUse | optionalInt }}</td>
<td>{{ benchmark.FossilGasUse | optionalInt }}</td>
<td v-if="renderedColumns.includes('DistrictSteamUse')">
{{ benchmark.DistrictSteamUse | optionalInt }}
</td>
Expand Down Expand Up @@ -126,7 +126,7 @@ export default class BuildingImage extends Vue {
const allColKeys: Array<string> = Object.keys(this.historicBenchmarks[0]);
const emptyColKeys = allColKeys.filter((colKey: string) => {
// A column is empty if it's all empty string or '0', so skip it if so. Some columns switch
// between both, like Natural Gas Use on Merch Mart, which we also want to ignore
// between both, like Fossil Gas Use on Merch Mart, which we also want to ignore
return !this.historicBenchmarks.every((datum) => {
return (datum as any)[colKey] === '' || (datum as any)[colKey] === '0.0';
});
Expand Down
20 changes: 10 additions & 10 deletions src/components/StatTile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
v-if="costEstimate"
class="bill-estimate"
>
<strong>Est. {{ statKey === 'NaturalGasUse' ? 'Gas' : 'Electric' }} Bill:</strong>
<strong>Est. {{ statKey === 'FossilGasUse' ? 'Gas' : 'Electric' }} Bill:</strong>
${{ Math.round(costEstimate).toLocaleString() }} for {{ building.DataYear }}**
</div>

Expand Down Expand Up @@ -141,18 +141,18 @@
so we don't currently have comparison data.
</p>

<!-- Natural Gas specific message -->
<!-- Fossil Gas specific message -->
<div
v-if="statValue === '0' && statKey === 'NaturalGasUse'"
v-if="statValue === '0' && statKey === 'FossilGasUse'"
class="no-gas-msg"
>
<div v-if="fullyGasFree">
<div class="bold">
This Building Didn't Burn Any Natural Gas! 🎉
This Building Didn't Burn Any Fossil Gas! 🎉
</div>

<p class="smaller">
This building burned no natural gas on-site and isn't connected to a district heating
This building burned no fossil gas on-site and isn't connected to a district heating
system, meaning it's fully electric! View <g-link to="/biggest-gas-free-buildings">
Chicago's Biggest Gas Free Buildings
</g-link>.
Expand All @@ -164,10 +164,10 @@
</div>

<p class="smaller">
Although this building didn't burn any natural gas on site, it's connected to a district
Although this building didn't burn any fossil gas on site, it's connected to a district
heating system, a centralized system for heating multiple buildings. District heating
systems can be fully electric, but in Chicago most district heating systems are natural
gas powered, meaning this building was most likely still heated with natural gas.
systems can be fully electric, but in Chicago most district heating systems are fossil
gas powered, meaning this building was most likely still heated with fossil gas.
</p>
</div>
</div>
Expand Down Expand Up @@ -241,7 +241,7 @@ export default class StatTile extends Vue {
* through a district heating system.
*/
get fullyGasFree(): boolean {
return parseFloat(this.building.NaturalGasUse) === 0
return parseFloat(this.building.FossilGasUse) === 0
&& parseFloat(this.building.DistrictSteamUse) === 0;
}

Expand All @@ -250,7 +250,7 @@ export default class StatTile extends Vue {
if (this.statKey === 'ElectricityUse') {
return estimateUtilitySpend(parseFloat(this.building[this.statKey] as string), true);
}
else if (this.statKey === 'NaturalGasUse') {
else if (this.statKey === 'FossilGasUse') {
return estimateUtilitySpend(parseFloat(this.building[this.statKey] as string), false);
}

Expand Down
2 changes: 1 addition & 1 deletion src/data/dist/benchmarking-all-years.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ID,DataYear,ReportingStatus,GrossFloorArea,TotalGHGEmissions,GHGIntensity,NumberOfBuildings,ChicagoEnergyRating,ENERGYSTARScore,ElectricityUse,NaturalGasUse,DistrictSteamUse,DistrictChilledWaterUse,AllOtherFuelUse,SiteEUI,SourceEUI,WeatherNormalizedSiteEUI,WeatherNormalizedSourceEUI
ID,DataYear,ReportingStatus,GrossFloorArea,TotalGHGEmissions,GHGIntensity,NumberOfBuildings,ChicagoEnergyRating,ENERGYSTARScore,ElectricityUse,FossilGasUse,DistrictSteamUse,DistrictChilledWaterUse,AllOtherFuelUse,SiteEUI,SourceEUI,WeatherNormalizedSiteEUI,WeatherNormalizedSourceEUI
252064,2020,Submitted Data,64028.0,1160.9,18.1,1,2.0,,2384738.9,,7438787.0,5594040.1,,240.8,323.6,246.0,329.9
232458,2020,Submitted Data,627680.0,4871.7,7.8,1,1.0,22,16397682.8,43537490.6,,,,95.5,146.0,100.3,150.7
254616,2020,Submitted Data,555524.0,4581.4,8.2,1,2.0,49,28606427.7,2199940.1,,,,55.5,148.3,56.7,151.8
Expand Down
2 changes: 1 addition & 1 deletion src/data/dist/building-benchmark-stats.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"GHGIntensity":{"count":2549.0,"mean":7.5,"std":5.5,"min":0.3,"max":114.8,"twentyFifthPercentile":5.0,"median":6.4,"seventyFifthPercentile":8.1},"TotalGHGEmissions":{"count":2549.0,"mean":1912.1,"std":4656.8,"min":4.8,"max":135875.8,"twentyFifthPercentile":485.2,"median":885.8,"seventyFifthPercentile":1858.9},"ElectricityUse":{"count":2549.0,"mean":9573668.8000000007,"std":24582595.1999999993,"min":0.0,"max":623023572.6000000238,"twentyFifthPercentile":1808639.8,"median":3796376.7000000002,"seventyFifthPercentile":8744977.5},"NaturalGasUse":{"count":2549.0,"mean":11076092.1999999993,"std":21654400.5,"min":0.0,"max":412348801.5,"twentyFifthPercentile":2913684.2999999998,"median":5818399.5999999996,"seventyFifthPercentile":11964909.1999999993},"SourceEUI":{"count":2549.0,"mean":153.8,"std":114.3,"min":5.9,"max":2440.1,"twentyFifthPercentile":103.3,"median":132.2,"seventyFifthPercentile":166.4},"SiteEUI":{"count":2549.0,"mean":89.0,"std":62.0,"min":3.7,"max":1440.9,"twentyFifthPercentile":59.7,"median":78.4,"seventyFifthPercentile":100.7},"YearBuilt":{"count":2549.0,"mean":1966.4,"std":38.0,"min":1865.0,"max":2021.0,"twentyFifthPercentile":1928.0,"median":1971.0,"seventyFifthPercentile":2002.0},"GrossFloorArea":{"count":2549.0,"mean":280384.4,"std":447416.8,"min":16333.0,"max":9245333.0,"twentyFifthPercentile":80449.5,"median":139707.0,"seventyFifthPercentile":303490.0},"DistrictSteamUse":{"count":2549.0,"mean":620184.1,"std":16730898.9000000004,"min":-11882688.3000000007,"max":804899285.5,"twentyFifthPercentile":0.0,"median":0.0,"seventyFifthPercentile":0.0},"DistrictChilledWaterUse":{"count":2549.0,"mean":384779.2,"std":3356083.1000000001,"min":-1344840.0,"max":60385415.5,"twentyFifthPercentile":0.0,"median":0.0,"seventyFifthPercentile":0.0}}
{"GHGIntensity":{"count":2549.0,"mean":7.5,"std":5.5,"min":0.3,"max":114.8,"twentyFifthPercentile":5.0,"median":6.4,"seventyFifthPercentile":8.1},"TotalGHGEmissions":{"count":2549.0,"mean":1912.1,"std":4656.8,"min":4.8,"max":135875.8,"twentyFifthPercentile":485.2,"median":885.8,"seventyFifthPercentile":1858.9},"ElectricityUse":{"count":2549.0,"mean":9573668.8000000007,"std":24582595.1999999993,"min":0.0,"max":623023572.6000000238,"twentyFifthPercentile":1808639.8,"median":3796376.7000000002,"seventyFifthPercentile":8744977.5},"FossilGasUse":{"count":2549.0,"mean":11076092.1999999993,"std":21654400.5,"min":0.0,"max":412348801.5,"twentyFifthPercentile":2913684.2999999998,"median":5818399.5999999996,"seventyFifthPercentile":11964909.1999999993},"SourceEUI":{"count":2549.0,"mean":153.8,"std":114.3,"min":5.9,"max":2440.1,"twentyFifthPercentile":103.3,"median":132.2,"seventyFifthPercentile":166.4},"SiteEUI":{"count":2549.0,"mean":89.0,"std":62.0,"min":3.7,"max":1440.9,"twentyFifthPercentile":59.7,"median":78.4,"seventyFifthPercentile":100.7},"YearBuilt":{"count":2549.0,"mean":1966.4,"std":38.0,"min":1865.0,"max":2021.0,"twentyFifthPercentile":1928.0,"median":1971.0,"seventyFifthPercentile":2002.0},"GrossFloorArea":{"count":2549.0,"mean":280384.4,"std":447416.8,"min":16333.0,"max":9245333.0,"twentyFifthPercentile":80449.5,"median":139707.0,"seventyFifthPercentile":303490.0},"DistrictSteamUse":{"count":2549.0,"mean":620184.1,"std":16730898.9000000004,"min":-11882688.3000000007,"max":804899285.5,"twentyFifthPercentile":0.0,"median":0.0,"seventyFifthPercentile":0.0},"DistrictChilledWaterUse":{"count":2549.0,"mean":384779.2,"std":3356083.1000000001,"min":-1344840.0,"max":60385415.5,"twentyFifthPercentile":0.0,"median":0.0,"seventyFifthPercentile":0.0}}
2 changes: 1 addition & 1 deletion src/data/dist/building-benchmarks.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DataYear,ID,PropertyName,ReportingStatus,Address,ZIPCode,ChicagoEnergyRating,ExemptFromChicagoEnergyRating,CommunityArea,PrimaryPropertyType,GrossFloorArea,YearBuilt,NumberOfBuildings,WaterUse,ENERGYSTARScore,ElectricityUse,NaturalGasUse,DistrictSteamUse,DistrictChilledWaterUse,AllOtherFuelUse,SiteEUI,SourceEUI,WeatherNormalizedSiteEUI,WeatherNormalizedSourceEUI,TotalGHGEmissions,GHGIntensity,Latitude,Longitude,Location,Row_ID,Wards,CommunityAreas,ZipCodes,CensusTracts,HistoricalWards2003-2015,GHGIntensityRank,GHGIntensityPercentileRank,TotalGHGEmissionsRank,TotalGHGEmissionsPercentileRank,ElectricityUseRank,ElectricityUsePercentileRank,NaturalGasUseRank,NaturalGasUsePercentileRank,GrossFloorAreaRank,GrossFloorAreaPercentileRank,SourceEUIRank,SourceEUIPercentileRank,SiteEUIRank,SiteEUIPercentileRank,GHGIntensityRankByPropertyType,TotalGHGEmissionsRankByPropertyType,ElectricityUseRankByPropertyType,NaturalGasUseRankByPropertyType,GrossFloorAreaRankByPropertyType,SourceEUIRankByPropertyType,SiteEUIRankByPropertyType
DataYear,ID,PropertyName,ReportingStatus,Address,ZIPCode,ChicagoEnergyRating,ExemptFromChicagoEnergyRating,CommunityArea,PrimaryPropertyType,GrossFloorArea,YearBuilt,NumberOfBuildings,WaterUse,ENERGYSTARScore,ElectricityUse,FossilGasUse,DistrictSteamUse,DistrictChilledWaterUse,AllOtherFuelUse,SiteEUI,SourceEUI,WeatherNormalizedSiteEUI,WeatherNormalizedSourceEUI,TotalGHGEmissions,GHGIntensity,Latitude,Longitude,Location,Row_ID,Wards,CommunityAreas,ZipCodes,CensusTracts,HistoricalWards2003-2015,GHGIntensityRank,GHGIntensityPercentileRank,TotalGHGEmissionsRank,TotalGHGEmissionsPercentileRank,ElectricityUseRank,ElectricityUsePercentileRank,FossilGasUseRank,FossilGasUsePercentileRank,GrossFloorAreaRank,GrossFloorAreaPercentileRank,SourceEUIRank,SourceEUIPercentileRank,SiteEUIRank,SiteEUIPercentileRank,GHGIntensityRankByPropertyType,TotalGHGEmissionsRankByPropertyType,ElectricityUseRankByPropertyType,FossilGasUseRankByPropertyType,GrossFloorAreaRankByPropertyType,SourceEUIRankByPropertyType,SiteEUIRankByPropertyType
2022,100001,Presence SMEMC St Elizabeth Campus,Submitted Data,1431 N Claremont Ave,60622,nan,True,WEST TOWN,Mixed Use Property,505417.0,1928.0,3,,,16795066.2,33899078.5,0.0,0.0,,164.0,267.3,164.7,265.2,4012.7,13.0,41.907627207523525,-87.68578575863826,"(41.907627207523525, -87.68578575863826)",2022-100001,41,25,21560.0,516,24,176.5,0.931,238.0,0.907,289.0,0.887,141.0,0.945,336.0,0.869,177.0,0.931,158.0,0.938,5.0,14.0,15.0,9.0,17.0,5.0,5.0
2020,100002,Clemente Community Academy HS -CPS,Submitted Data,1147 N Western Ave,60622,2.0,False,WEST TOWN,K-12 School,354518.0,1974.0,1,,18,23008936.8,1664640.0,,,,69.6,186.7,71.8,192.7,3679.4,10.4,41.90261979,-87.68613497,"(41.90261979, -87.68613497)",2020-100002,41,25,21560.0,541,24,,,,,,,,,,,,,,,,,,,,,
2022,100019,Dixon Building,Submitted Data,411 - 415 S Wells St,60607,3.5,False,LOOP,Office,58200.0,1908.0,1,,75,1641381.8,2465232.2,0.0,0.0,,70.6,123.4,73.2,126.2,347.1,6.0,41.87656209838564,-87.6335397749874,"(41.87656209838564, -87.6335397749874)",2022-100019,26,38,14917.0,92,48,1468.0,0.424,2246.0,0.119,1981.0,0.223,2020.0,0.208,2355.0,0.077,1475.0,0.422,1519.0,0.404,224.5,303.0,306.0,169.0,315.0,231.0,145.0
Expand Down
2 changes: 1 addition & 1 deletion src/data/dist/building-statistics-by-property-type.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/data/scripts/add_context_by_property_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'GHGIntensity',
'TotalGHGEmissions',
'ElectricityUse',
'NaturalGasUse',
'FossilGasUse',
'GrossFloorArea',
'SourceEUI',
'SiteEUI',
Expand Down
4 changes: 2 additions & 2 deletions src/data/scripts/clean_and_pare_down_data_all_years.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
'ChicagoEnergyRating',
'ENERGYSTARScore',
'ElectricityUse',
'NaturalGasUse',
'FossilGasUse',
'DistrictSteamUse',
'DistrictChilledWaterUse',
'AllOtherFuelUse',
Expand Down Expand Up @@ -76,7 +76,7 @@
'Water Use (kGal)': 'WaterUse',
'ENERGY STAR Score': 'ENERGYSTARScore',
'Electricity Use (kBtu)': 'ElectricityUse',
'Natural Gas Use (kBtu)': 'NaturalGasUse',
'Natural Gas Use (kBtu)': 'FossilGasUse',
'District Steam Use (kBtu)': 'DistrictSteamUse',
'District Chilled Water Use (kBtu)': 'DistrictChilledWaterUse',
'All Other Fuel Use (kBtu)': 'AllOtherFuelUse',
Expand Down
2 changes: 1 addition & 1 deletion src/data/scripts/clean_and_pare_down_data_current_year.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def process(file_path: str) -> pandas.DataFrame:
"Water Use (kGal)": "WaterUse",
"ENERGY STAR Score": "ENERGYSTARScore",
"Electricity Use (kBtu)": "ElectricityUse",
"Natural Gas Use (kBtu)": "NaturalGasUse",
"Natural Gas Use (kBtu)": "FossilGasUse",
"District Steam Use (kBtu)": "DistrictSteamUse",
"District Chilled Water Use (kBtu)": "DistrictChilledWaterUse",
"All Other Fuel Use (kBtu)": "AllOtherFuelUse",
Expand Down
4 changes: 2 additions & 2 deletions src/data/scripts/process_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
'GHGIntensity',
'TotalGHGEmissions',
'ElectricityUse',
'NaturalGasUse',
'FossilGasUse',
'SourceEUI',
'SiteEUI',
'YearBuilt',
Expand All @@ -36,7 +36,7 @@
'GHGIntensity',
'TotalGHGEmissions',
'ElectricityUse',
'NaturalGasUse',
'FossilGasUse',
'GrossFloorArea',
'SourceEUI',
'SiteEUI',
Expand Down
4 changes: 2 additions & 2 deletions src/data/source/Benchmark DataExplainer.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ unit information - here's a table of the mapping so you can see the units clearl
: Water Use (kGal) : WaterUse :
: ENERGY STAR Score : ENERGYSTARScore :
: Electricity Use (kBtu) : ElectricityUse :
: Natural Gas Use (kBtu) : NaturalGasUse :
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually would not recommend changing this - we don't need to rename the data in our data pipeline, because that'll make it harder for folks to compare parsed data to the raw city data. Could you revert any changes that tweak the data?

: Natural Gas Use (kBtu) : FossilGasUse :
: District Steam Use (kBtu) : DistrictSteamUse :
: District Chilled Water Use (kBtu) : DistrictChilledWaterUse :
: All Other Fuel Use (kBtu) : AllOtherFuelUse :
Expand Down Expand Up @@ -60,7 +60,7 @@ unit information - here's a table of the mapping so you can see the units clearl
"Water Use (kGal)" : "WaterUse",
"ENERGY STAR Score" : "ENERGYSTARScore",
"Electricity Use (kBtu)" : "ElectricityUse",
"Natural Gas Use (kBtu)" : "NaturalGasUse",
"Natural Gas Use (kBtu)" : "FossilGasUse",
"District Steam Use (kBtu)" : "DistrictSteamUse",
"District Chilled Water Use (kBtu)" : "DistrictChilledWaterUse",
"All Other Fuel Use (kBtu)" : "AllOtherFuelUse",
Expand Down
2 changes: 1 addition & 1 deletion src/data/source/BenchmarkDataRenamed.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DataYear,ID,PropertyName,ReportingStatus,Address,ZIPCode,ChicagoEnergyRating,ExemptFromChicagoEnergyRating,CommunityArea,PrimaryPropertyType,GrossFloorArea,YearBuilt,NumberOfBuildings,WaterUse,ENERGYSTARScore,ElectricityUse,NaturalGasUse,DistrictSteamUse,DistrictChilledWaterUse,AllOtherFuelUse,SiteEUI,SourceEUI,WeatherNormalizedSiteEUI,WeatherNormalizedSourceEUI,TotalGHGEmissions,GHGIntensity,Latitude,Longitude,Location,Row_ID,Wards,CommunityAreas,ZipCodes,CensusTracts,HistoricalWards2003-2015
DataYear,ID,PropertyName,ReportingStatus,Address,ZIPCode,ChicagoEnergyRating,ExemptFromChicagoEnergyRating,CommunityArea,PrimaryPropertyType,GrossFloorArea,YearBuilt,NumberOfBuildings,WaterUse,ENERGYSTARScore,ElectricityUse,FossilGasUse,DistrictSteamUse,DistrictChilledWaterUse,AllOtherFuelUse,SiteEUI,SourceEUI,WeatherNormalizedSiteEUI,WeatherNormalizedSourceEUI,TotalGHGEmissions,GHGIntensity,Latitude,Longitude,Location,Row_ID,Wards,CommunityAreas,ZipCodes,CensusTracts,HistoricalWards2003-2015
2021,260116,,Submitted,3812 S MICHIGAN AVE,60653,0.0,False,DOUGLAS,,71987.0,,,,,0.0,0.0,0.0,0.0,,,,,,,,41.82021138,-87.61246867,"(41.82021138, -87.61246867)",2021-260116,10,4,4301.0,583,1
2021,254094,,Submitted,3041 S Michigan Ave,60616,0.0,False,Douglas,,67133.0,,,,,0.0,0.0,0.0,0.0,,,,,,,,41.8458598,-87.62921,"(41.8458598, -87.62921)",2021-254094,9,35,21194.0,3,12
2021,105673,,Submitted,506 W HARRISON ST,60607,0.0,False,NEAR WEST SIDE,,92435.0,,,,,0.0,0.0,0.0,0.0,,,,,,,,41.87399385,-87.651678,"(41.87399385, -87.651678)",2021-105673,48,29,14917.0,97,8
Expand Down
Loading
Loading