Skip to content

Commit

Permalink
geojson -> json
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed May 1, 2024
1 parent 53c3618 commit da23bce
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/prepare_stacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def get_content():
locations = prepare_locations()
json.dump(locations, f, ensure_ascii=False, indent=2)

with open('../ui/projects/businessgate/src/assets/neighborhoods.geojson', 'w') as f:
with open('../ui/projects/businessgate/src/assets/neighborhoods.json', 'w') as f:
neighborhoods_geojson = prepare_neighborhoods_geojson()
f.write(neighborhoods_geojson)

Expand Down
2 changes: 1 addition & 1 deletion ui/projects/businessgate/src/app/data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class DataService {
STACKS_DATA_URL = 'assets/all_stacks.json';

DEMAND_CATEGORIES = 'assets/demand_categories.json';
NEIGHBORHOODS_GEOJSON = 'assets/neighborhoods.geojson';
NEIGHBORHOODS_GEOJSON = 'assets/neighborhoods.json';

public businesses = new ReplaySubject<any>(1);
public businesses_licensing = new ReplaySubject<any>(1);
Expand Down

0 comments on commit da23bce

Please sign in to comment.