|
|
@@ -13,9 +13,11 @@ export type Index = 'EVI' | 'RVI4S1';
|
|
|
@Injectable({providedIn: 'root'})
|
|
|
export class CalculatorService {
|
|
|
AVAILABLE_PRODUCTS = ['EVI', 'RVI4S1'] as const;
|
|
|
+ BLUR_MIN_VALUE = 0 as const;
|
|
|
+ BLUR_MAX_VALUE = 5 as const;
|
|
|
SERVICE_BASE_URL = 'https://fieldcalc.lesprojekt.cz/' as const;
|
|
|
availableDates: Array<string>;
|
|
|
- blurValue = 0.4;
|
|
|
+ blurValue = 0;
|
|
|
dateRangeSelects: Subject<{date: string}> = new Subject();
|
|
|
dateCalendarSelects: Subject<{date: string}> = new Subject();
|
|
|
lpisLoading = false;
|