|
@@ -1,4 +1,3 @@
|
|
|
-<h3>Rural attractiveness index of region {{region}} in {{yearGraphService.selectedYear}} scenario comparison</h3>
|
|
|
|
|
<div *ngIf="sdmDihService.yearsLoaded; else loading">
|
|
<div *ngIf="sdmDihService.yearsLoaded; else loading">
|
|
|
<!--select
|
|
<!--select
|
|
|
class="form-select form-select-lg mb-3"
|
|
class="form-select form-select-lg mb-3"
|
|
@@ -8,20 +7,31 @@
|
|
|
>
|
|
>
|
|
|
<option [ngValue]="year" *ngFor="let year of years">{{ year }}</option>
|
|
<option [ngValue]="year" *ngFor="let year of years">{{ year }}</option>
|
|
|
</select-->
|
|
</select-->
|
|
|
- <h4>Baseline scenario</h4>
|
|
|
|
|
<div class="d-flex">
|
|
<div class="d-flex">
|
|
|
|
|
+ <div class="discs-caption">
|
|
|
|
|
+ <h4>Baseline scenario</h4>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ of region {{region}} in {{yearGraphService.selectedYear}}
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
<div *ngFor="let factor of sdmDihService.factors">
|
|
<div *ngFor="let factor of sdmDihService.factors">
|
|
|
<disc [region]="region" [factor]="factor" show="factor" inSitu="true"></disc>
|
|
<disc [region]="region" [factor]="factor" show="factor" inSitu="true"></disc>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
-
|
|
|
|
|
|
|
+ <hr>
|
|
|
<div *ngFor="let scenario of filteredScenarios">
|
|
<div *ngFor="let scenario of filteredScenarios">
|
|
|
- <h4>{{scenario}} scenario</h4>
|
|
|
|
|
<div class="d-flex">
|
|
<div class="d-flex">
|
|
|
|
|
+ <div class="discs-caption">
|
|
|
|
|
+ <h4>{{scenario}} scenario</h4>
|
|
|
|
|
+ <p>
|
|
|
|
|
+ of region {{region}} in {{yearGraphService.selectedYear}}
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
<div *ngFor="let factor of sdmDihService.factors">
|
|
<div *ngFor="let factor of sdmDihService.factors">
|
|
|
<disc [region]="region" [factor]="factor" [scenario]="scenario" show="factor" inSitu="true"></disc>
|
|
<disc [region]="region" [factor]="factor" [scenario]="scenario" show="factor" inSitu="true"></disc>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <hr>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<ng-template #loading> Loading data... </ng-template>
|
|
<ng-template #loading> Loading data... </ng-template>
|