1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297 |
- do $$
- begin
- /*
- Скрипт создания информационной базы данных
- Согласно технического задания https://git.hostfl.ru/VolovikovAlex/Study2025
- Редакция 2025-03-07
- Edit by valex
- */
- /*
- 1. Удаляем старые элементы
- ======================================
- */
- drop view if exists vw_report_fails_statistics;
- drop view if exists vw_report_fails_height_statistics;
- raise notice 'Запускаем создание новой структуры базы данных meteo';
- begin
- -- Связи
- -- Основные таблицы
- alter table if exists public.measurment_input_params
- drop constraint if exists measurment_type_id_fk;
- alter table if exists public.employees
- drop constraint if exists military_rank_id_fk;
- alter table if exists public.measurment_baths
- drop constraint if exists measurment_input_param_id_fk;
- alter table if exists public.measurment_baths
- drop constraint if exists emploee_id_fk;
- -- Рассчетные
- alter table if exists public.calc_correction_types
- drop constraint if exists calc_correction_types_measurment_type_id_fk;
-
- alter table if exists public.calc_corrections
- drop constraint if exists calc_corrections_calc_height_id_fk;
-
- alter table if exists public.calc_corrections
- drop constraint if exists calc_corrections_calc_correction_type_id_fk;
-
- alter table if exists public.calc_correction_types
- drop constraint if exists calc_correction_types_parent_id_fk;
-
- -- Таблицы
- -- Основные данные
- drop table if exists public.measurment_input_params;
- drop table if exists public.measurment_baths;
- drop table if exists public.employees;
- drop table if exists public.measurment_types;
- drop table if exists public.military_ranks;
- drop table if exists public.measurment_settings;
- -- Расчетные данные
- drop table if exists public.calc_corrections_temperature;
- drop table if exists public.calc_correction_types;
- drop table if exists public.calc_corrections;
- drop table if exists public.calc_corrections_height;
-
- -- Нумераторы
- -- Основные нумераторы
- drop sequence if exists public.measurment_input_params_seq cascade;
- drop sequence if exists public.measurment_baths_seq cascade;
- drop sequence if exists public.employees_seq cascade;
- drop sequence if exists public.military_ranks_seq cascade;
- drop sequence if exists public.measurment_types_seq cascade;
- -- Расчетные нумераторы
- drop sequence if exists public.calc_corrections_temperature_seq cascade;
- drop sequence if exists public.calc_correction_types_seq cascade;
- drop sequence if exists public.calc_corrections_seq cascade;
- drop sequence if exists public.calc_corrections_height_seq cascade;
- end;
- raise notice 'Удаление старых данных выполнено успешно';
- /*
- 2. Добавляем структуры данных
- ================================================
- */
- -- Справочник должностей
- create table military_ranks
- (
- id integer primary key not null,
- description character varying(255)
- );
- insert into military_ranks(id, description)
- values(1,'Рядовой'),(2,'Лейтенант');
- create sequence military_ranks_seq start 3;
- alter table military_ranks alter column id set default nextval('public.military_ranks_seq');
- -- Пользователя
- create table employees
- (
- id integer primary key not null,
- name text,
- birthday timestamp ,
- military_rank_id integer not null
- );
- insert into employees(id, name, birthday,military_rank_id )
- values(1, 'Воловиков Александр Сергеевич','1978-06-24', 2);
- create sequence employees_seq start 2;
- alter table employees alter column id set default nextval('public.employees_seq');
- -- Устройства для измерения
- create table measurment_types
- (
- id integer primary key not null,
- short_name character varying(50),
- description text
- );
- insert into measurment_types(id, short_name, description)
- values(1, 'ДМК', 'Десантный метео комплекс'),
- (2,'ВР','Ветровое ружье');
- create sequence measurment_types_seq start 3;
- alter table measurment_types alter column id set default nextval('public.measurment_types_seq');
- -- Таблица с параметрами
- create table measurment_input_params
- (
- id integer primary key not null,
- measurment_type_id integer not null,
- height numeric(8,2) default 0,
- temperature numeric(8,2) default 0,
- pressure numeric(8,2) default 0,
- wind_direction numeric(8,2) default 0,
- wind_speed numeric(8,2) default 0,
- bullet_demolition_range numeric(8,2) default 0
- );
- insert into measurment_input_params(id, measurment_type_id, height, temperature, pressure, wind_direction,wind_speed )
- values(1, 1, 100,12,34,0.2,45);
- create sequence measurment_input_params_seq start 2;
- alter table measurment_input_params alter column id set default nextval('public.measurment_input_params_seq');
- -- Таблица с историей
- create table measurment_baths
- (
- id integer primary key not null,
- emploee_id integer not null,
- measurment_input_param_id integer not null,
- started timestamp default now()
- );
- insert into measurment_baths(id, emploee_id, measurment_input_param_id)
- values(1, 1, 1);
- create sequence measurment_baths_seq start 2;
- alter table measurment_baths alter column id set default nextval('public.measurment_baths_seq');
- -- Таблица с настройками
- create table measurment_settings
- (
- key character varying(100) primary key not null,
- value character varying(255) ,
- description text
- );
- insert into measurment_settings(key, value, description)
- values('min_temperature', '-10', 'Минимальное значение температуры'),
- ('max_temperature', '50', 'Максимальное значение температуры'),
- ('min_pressure','500','Минимальное значение давления'),
- ('max_pressure','900','Максимальное значение давления'),
- ('min_wind_direction','0','Минимальное значение направления ветра'),
- ('max_wind_direction','59','Максимальное значение направления ветра'),
- ('calc_table_temperature','15.9','Табличное значение температуры'),
- ('calc_table_pressure','750','Табличное значение наземного давления'),
- ('min_height','0','Минимальная высота'),
- ('max_height','400','Максимальная высота');
- raise notice 'Создание общих справочников и наполнение выполнено успешно';
- /*
- 3. Подготовка расчетных структур
- ==========================================
- */
- create table calc_corrections_temperature
- (
- temperature numeric(8,2) not null primary key,
- correction numeric(8,2) not null
- );
- insert into public.calc_corrections_temperature(temperature, correction)
- Values(0, 0.5),(5, 0.5),(10, 1), (20,1), (25, 2), (30, 3.5), (40, 4.5);
- drop type if exists interpolation_type cascade;
- create type interpolation_type as
- (
- x0 numeric(8,2),
- x1 numeric(8,2),
- y0 numeric(8,2),
- y1 numeric(8,2)
- );
- -- Тип для входных параметров
- drop type if exists input_params_type cascade;
- create type input_params_type as
- (
- height numeric(8,2),
- temperature numeric(8,2),
- pressure numeric(8,2),
- wind_direction numeric(8,2),
- wind_speed numeric(8,2),
- bullet_demolition_range numeric(8,2)
- );
- -- Тип с результатами проверки
- drop type if exists check_result_type cascade;
- create type check_result_type as
- (
- is_check boolean,
- error_message text,
- params input_params_type
- );
- -- Тип с результатами расчета
- drop type if exists calc_result_type cascade;
- create type calc_result_type as
- (
- -- Тип оборудования
- measurement_type_id integer,
- -- Высота
- height integer,
- -- Отклонение наземного давления атмосферы
- deltaPressure numeric(8,2),
- -- Отклонение приземной виртуальной температуры
- deltaTemperature numeric(8,2),
- -- Среднее отклонения температуры воздуха
- deviationTemperature numeric(8,2),
- -- Скорость среднего ветра
- deviationWind numeric(8,2),
- -- Направление среднего ветра
- deviationWindDirection numeric(8,2)
- );
- -- Таблица с типами таблиц корректировок и заголовками
- create sequence calc_correction_types_seq;
- create table calc_correction_types
- (
- id integer not null primary key default nextval('public.calc_correction_types_seq'),
- parent_id integer,
- measurment_type_id integer,
- description text not null,
- values integer[]
- );
- insert into calc_correction_types( description, values)
- values( 'Таблица 2', array[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30, 40, 50]), -- 1
- ( 'Таблица 3, скорость среднего ветра', null), -- 2
- ( 'Таблица 3, направление среднего ветра', null); -- 3
- insert into calc_correction_types( description, parent_id, measurment_type_id, values)
- values
- ('Таблица 3, Скорость среднего ветра (ВР)', 2, 2, array[40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150]), -- 4
- ('Таблица 3, Направление среднего ветра (ВР)',3, 2, array[40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150]), -- 5
- ('Таблица 3,Скорость среднего ветра (ДМК)',2, 1, array[3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]), -- 6
- ('Таблица 3, Направление среднего ветра (ДМК)',3, 1, array[3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]); -- 7
- insert into calc_correction_types( description, parent_id)
- values('Таблица 2, Положительные температуры', 1 ), -- 8
- ('Таблица 2, Отрицательные температуры', 1 ) --9
- ;
- -- Cписок высот в разрезе типа оборудования
- create sequence calc_corrections_height_seq;
- create table calc_corrections_height
- (
- id integer primary key not null default nextval('public.calc_corrections_height_seq'),
- height integer not null
- );
- insert into calc_corrections_height(height)
- values(200),(400),(800),(1200),(1600),(2000),(2400),(3000),(4000);
- -- Универсальная таблица корректировок
- create sequence calc_corrections_seq;
- create table calc_corrections
- (
- id integer not null primary key default nextval('public.calc_corrections_seq'),
- calc_height_id integer not null,
- calc_correction_type_id integer not null,
- values integer[]
- );
- insert into calc_corrections(calc_height_id, calc_correction_type_id, values )
- -- Таблица 2, отрицптельные значения
- values(1, 8, array[-1, -2, -3, -4, -5, -6, -7, -8, -8, -9, -20, -29, -39, -49]), -- 200
- (2, 8, array[-1, -2, -3, -4, -5, -6, -6, -7, -8, -9, -19, -29, -39, -48]), -- 400
- (3, 8, array[-1, -2, -3, -4, -5, -6, -6, -7, -7, -8, -18, -28, -37, -46]), -- 800
- (4, 8, array[-1, -2, -3, -4, -4, -5, -5, -6, -7, -8, -17, -26, -35, -44]), -- 1200
- -- Таблица 2, положитеьные значения
- (1, 7, array[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30]), -- 200
- (2, 7, array[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30]), -- 400
- (3, 7, array[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30]), -- 800
- (4, 7, array[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30]), -- 1200
- -- Таблица 3, Скорость среднего ветра (ВР)
- (1, 4, array[3, 4, 5, 6, 7, 7, 8, 9, 10, 11, 12, 12]), -- 200
- (2, 4, array[4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 ,15]), -- 400
- (3, 4, array[4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15 ,16]), -- 800
- (4, 4, array[4, 5, 7, 8, 8, 9, 11, 12, 13, 15 ,15, 16]), -- 1200
- -- Таблица 3, Направление среднего ветра (ВР)
- (1, 5, array[0]), -- 200
- (2, 5, array[1]), -- 400
- (3, 5, array[2]), -- 800
- (4, 5, array[2]), -- 1200
- -- Таблица 3,Скорость среднего ветра (ДМК)
- (1, 6, array[4,6,8,9,10,12,14,15,16,18,20,21,22]), -- 200
- (2, 6, array[5,7,10,11,12,14,17,18,20,22,23,25,27]), -- 400
- (3, 6, array[5,8,10,11,13,15,18,19,21,23,25,27,28]), -- 800
- (4, 6, array[5,8,11,12,13,16,19,20,23,24,26,28,30]), -- 1200
- -- 'Таблица 3, Направление среднего ветра (ДМК)
- (1, 7, array[1]), -- 200
- (2, 7, array[2]), -- 400
- (3, 7, array[3]), -- 800
- (4, 7, array[3]) -- 1200
- ;
-
- raise notice 'Расчетные структуры сформированы';
- /*
- 4. Создание связей
- ==========================================
- */
- begin
- -- Основные связи
- -- Связь между пачками измерений с пользователями (один ко многим)
- alter table public.measurment_baths
- add constraint emploee_id_fk
- foreign key (emploee_id)
- references public.employees (id);
- -- Связь между пачками измерений и измерениями (один к одному)
- alter table public.measurment_baths
- add constraint measurment_input_param_id_fk
- foreign key(measurment_input_param_id)
- references public.measurment_input_params(id);
- -- Связь между измерениями и типом оборудования (один ко многим)
- alter table public.measurment_input_params
- add constraint measurment_type_id_fk
- foreign key(measurment_type_id)
- references public.measurment_types (id);
- -- Связь между пользователем и званием (один ко многим)
- alter table public.employees
- add constraint military_rank_id_fk
- foreign key(military_rank_id)
- references public.military_ranks (id);
- -- Расчетные связм
- -- Связь между типом измерения и типом таблицы корректировок
- alter table public.calc_correction_types
- add constraint calc_correction_types_measurment_type_id_fk
- foreign key(measurment_type_id)
- references public.measurment_types(id);
- -- Связь основной таблицы корректировок с высотами
- alter table public.calc_corrections
- add constraint calc_corrections_calc_height_id_fk
- foreign key(calc_height_id)
- references public.calc_corrections_height(id);
- -- Связь основной таблицы корректировок в типами корректировок
- alter table public.calc_corrections
- add constraint calc_corrections_calc_correction_type_id_fk
- foreign key(calc_correction_type_id)
- references public.calc_correction_types(id);
- -- Групповая связь для таблицы типов корректировок
- alter table public.calc_correction_types
- add constraint calc_correction_types_parent_id_fk
- foreign key(parent_id)
- references public.calc_correction_types(id);
-
-
- end;
- raise notice 'Связи сформированы';
- raise notice 'Формируем индексы';
- create index if not exists ix_measurment_baths_emploee_id on public.measurment_baths(emploee_id);
- create index if not exists ix_measurment_baths_measurment_input_param_id on public.measurment_baths(measurment_input_param_id);
- raise notice 'Индексы сформирован';
- /*
- 4. Создает расчетные и вспомогательные функции
- ==========================================
- */
- -- Функция для расчета отклонения приземной виртуальной температуры
- drop function if exists public.fn_calc_header_temperature;
- create function public.fn_calc_header_temperature(
- par_temperature numeric(8,2))
- returns numeric(8,2)
- language 'plpgsql'
- as $BODY$
- declare
- default_temperature numeric(8,2) default 15.9;
- default_temperature_key character varying default 'calc_table_temperature' ;
- virtual_temperature numeric(8,2) default 0;
- deltaTv numeric(8,2) default 0;
- var_result numeric(8,2) default 0;
- begin
- raise notice 'Расчет отклонения приземной виртуальной температуры по температуре %', par_temperature;
- -- Определим табличное значение температуры
- Select coalesce(value::numeric(8,2), default_temperature)
- from public.measurment_settings
- into virtual_temperature
- where
- key = default_temperature_key;
- -- Вирутальная поправка
- deltaTv := par_temperature +
- public.fn_calc_temperature_interpolation(par_temperature => par_temperature);
-
- -- Отклонение приземной виртуальной температуры
- var_result := deltaTv - virtual_temperature;
-
- return var_result;
- end;
- $BODY$;
- -- Функция для формирования даты в специальном формате
- drop function if exists public.fn_calc_header_period;
- create function public.fn_calc_header_period(
- par_period timestamp with time zone)
- returns text
- language 'sql'
- return
- -- ДД
- case when (extract(day from par_period) < 10::numeric) then '0'::text else ''::text end ||
- extract(day from par_period)::text ||
- -- ЧЧ
- case when (extract(hour from par_period) < 10::numeric) then '0'::text else ''::text end ||
- extract(hour from par_period)::text ||
- -- Десятки минут
- case when (extract(minute from par_period) < 10::numeric) then '0'::text
- else
- left(extract(minute from par_period)::text, 1)
- end;
- -- Функция для расчета отклонения наземного давления
- drop function if exists public.fn_calc_header_pressure;
- create function public.fn_calc_header_pressure
- (
- par_pressure numeric(8,2))
- returns numeric(8,2)
- language 'plpgsql'
- as $body$
- declare
- default_pressure numeric(8,2) default 750;
- table_pressure numeric(8,2) default null;
- default_pressure_key character varying default 'calc_table_pressure' ;
- begin
- raise notice 'Расчет отклонения наземного давления для %', par_pressure;
-
- -- Определяем граничное табличное значение
- if not exists (select 1 from public.measurment_settings where key = default_pressure_key ) then
- Begin
- table_pressure := default_pressure;
- end;
- else
- begin
- select value::numeric(18,2)
- into table_pressure
- from public.measurment_settings where key = default_pressure_key;
- end;
- end if;
-
- -- Результат
- return par_pressure - coalesce(table_pressure,table_pressure) ;
- end;
- $body$;
- -- Функция для проверки входных параметров
- drop function if exists public.fn_check_input_params(numeric(8,2), numeric(8,2), numeric(8,2), numeric(8,2), numeric(8,2), numeric(8,2));
- create function public.fn_check_input_params(
- par_height numeric,
- par_temperature numeric,
- par_pressure numeric,
- par_wind_direction numeric,
- par_wind_speed numeric,
- par_bullet_demolition_range numeric)
- returns check_result_type
- language 'plpgsql'
- as $body$
- declare
- var_result public.check_result_type;
- begin
- var_result.is_check := False;
-
- -- Температура
- if not exists (
- select 1 from (
- select
- coalesce(min_temperature , '0')::numeric(8,2) as min_temperature,
- coalesce(max_temperature, '0')::numeric(8,2) as max_temperature
- from
- (select 1 ) as t
- cross join
- ( select value as min_temperature from public.measurment_settings where key = 'min_temperature' ) as t1
- cross join
- ( select value as max_temperature from public.measurment_settings where key = 'max_temperature' ) as t2
- ) as t
- where
- par_temperature between min_temperature and max_temperature
- ) then
- var_result.error_message := format('Температура % не укладывает в диаппазон!', par_temperature);
- end if;
- var_result.params.temperature := par_temperature;
-
- -- Давление
- if not exists (
- select 1 from (
- select
- coalesce(min_pressure , '0')::numeric(8,2) as min_pressure,
- coalesce(max_pressure, '0')::numeric(8,2) as max_pressure
- from
- (select 1 ) as t
- cross join
- ( select value as min_pressure from public.measurment_settings where key = 'min_pressure' ) as t1
- cross join
- ( select value as max_pressure from public.measurment_settings where key = 'max_pressure' ) as t2
- ) as t
- where
- par_pressure between min_pressure and max_pressure
- ) then
- var_result.error_message := format('Давление %s не укладывает в диаппазон!', par_pressure);
- end if;
- var_result.params.pressure := par_pressure;
- -- Высота
- if not exists (
- select 1 from (
- select
- coalesce(min_height , '0')::numeric(8,2) as min_height,
- coalesce(max_height, '0')::numeric(8,2) as max_height
- from
- (select 1 ) as t
- cross join
- ( select value as min_height from public.measurment_settings where key = 'min_height' ) as t1
- cross join
- ( select value as max_height from public.measurment_settings where key = 'max_height' ) as t2
- ) as t
- where
- par_height between min_height and max_height
- ) then
- var_result.error_message := format('Высота %s не укладывает в диаппазон!', par_height);
- end if;
- var_result.params.height := par_height;
-
- -- Напрвление ветра
- if not exists (
- select 1 from (
- select
- coalesce(min_wind_direction , '0')::numeric(8,2) as min_wind_direction,
- coalesce(max_wind_direction, '0')::numeric(8,2) as max_wind_direction
- from
- (select 1 ) as t
- cross join
- ( select value as min_wind_direction from public.measurment_settings where key = 'min_wind_direction' ) as t1
- cross join
- ( select value as max_wind_direction from public.measurment_settings where key = 'max_wind_direction' ) as t2
- )
- where
- par_wind_direction between min_wind_direction and max_wind_direction
- ) then
- var_result.error_message := format('Направление ветра %s не укладывает в диаппазон!', par_wind_direction);
- end if;
-
- var_result.params.wind_direction := par_wind_direction;
- var_result.params.wind_speed := par_wind_speed;
- if coalesce(var_result.error_message,'') = '' then
- var_result.is_check = True;
- end if;
- return var_result;
-
- end;
- $body$;
- -- Функция для проверки параметров
- drop function if exists public.fn_check_input_params(input_params);
- create function public.fn_check_input_params(
- par_param input_params_type
- )
- returns public.input_params_type
- language 'plpgsql'
- as $body$
- declare
- var_result check_result_type;
- begin
- var_result := fn_check_input_params(
- par_param.height, par_param.temperature, par_param.pressure, par_param.wind_direction,
- par_param.wind_speed, par_param.bullet_demolition_range
- );
- if var_result.is_check = False then
- raise exception 'Ошибка %', var_result.error_message;
- end if;
-
- return var_result.params;
- end ;
- $body$;
- -- Расчет интерполяции
- drop function if exists public.fn_calc_interpolation;
- create function public.fn_calc_interpolation(
- par_temperature numeric,
- par_interpolation public.interpolation_type
- )
- returns numeric
- language 'plpgsql'
- as $body$
- -- Расчет интерполяции
- declare
- var_result numeric(8,2) default 0;
- var_denominator numeric(8,2) default 0;
- begin
- var_denominator := par_interpolation.x1 - par_interpolation.x0;
- if var_denominator = 0.0 then
- raise exception 'Деление на нуль. Возможно, некорректные данные в таблице с поправками!';
- end if;
- var_result := (par_temperature - par_interpolation.x0) * (par_interpolation.y1 - par_interpolation.y0) / var_denominator + par_interpolation.y0;
- return var_result;
- end;
- $body$;
-
- -- Функция для расчета интерполяции для метео приближенный
- drop function if exists public.fn_calc_temperature_interpolation;
- create function public.fn_calc_temperature_interpolation(
- par_temperature numeric(8,2))
- returns numeric
- language 'plpgsql'
- as $body$
- declare
- var_interpolation interpolation_type;
- var_result numeric(8,2) default 0;
- var_min_temparure numeric(8,2) default 0;
- var_max_temperature numeric(8,2) default 0;
- var_denominator numeric(8,2) default 0;
- begin
- raise notice 'Расчет интерполяции для температуры %', par_temperature;
- -- Проверим, возможно температура совпадает со значением в справочнике
- if exists (select 1 from public.calc_corrections_temperature where temperature = par_temperature ) then
- begin
- select correction
- into var_result
- from public.calc_corrections_temperature
- where
- temperature = par_temperature;
- end;
- else
- begin
- -- Получим диапазон в котором работают поправки
- select min(temperature), max(temperature)
- into var_min_temparure, var_max_temperature
- from public.calc_corrections_temperature;
- if par_temperature < var_min_temparure or
- par_temperature > var_max_temperature then
- raise exception 'Некорректно передан параметр! Невозможно рассчитать поправку. Значение должно укладываться в диаппазон: %, %',
- var_min_temparure, var_max_temperature;
- end if;
- -- Получим граничные параметры
- select x0, y0, x1, y1
- into var_interpolation.x0, var_interpolation.y0, var_interpolation.x1, var_interpolation.y1
- from
- (
- select t1.temperature as x0, t1.correction as y0
- from public.calc_corrections_temperature as t1
- where t1.temperature <= par_temperature
- order by t1.temperature desc
- limit 1
- ) as leftPart
- cross join
- (
- select t1.temperature as x1, t1.correction as y1
- from public.calc_corrections_temperature as t1
- where t1.temperature >= par_temperature
- order by t1.temperature
- limit 1
- ) as rightPart;
- raise notice 'Граничные значения %', var_interpolation;
- var_result := fn_calc_interpolation( par_temperature, var_interpolation);
-
- end;
- end if;
- return var_result;
- end;
- $body$;
- -- Функция для генерации случайной даты
- drop function if exists fn_get_random_timestamp;
- create function fn_get_random_timestamp(
- par_min_value timestamp,
- par_max_value timestamp)
- returns timestamp
- language 'plpgsql'
- as $body$
- begin
- return random() * (par_max_value - par_min_value) + par_min_value;
- end;
- $body$;
- -- Функция для генерации случайного целого числа из диаппазона
- drop function if exists fn_get_randon_integer;
- create function fn_get_randon_integer(
- par_min_value integer,
- par_max_value integer
- )
- returns integer
- language 'plpgsql'
- as $body$
- begin
- return floor((par_max_value + 1 - par_min_value)*random())::integer + par_min_value;
- end;
- $body$;
- -- Функция для гнерации случайного текста
- drop function if exists fn_get_random_text;
- create function fn_get_random_text(
- par_length int,
- par_list_of_chars text DEFAULT 'АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюяABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_0123456789'
- )
- returns text
- language 'plpgsql'
- as $body$
- declare
- var_len_of_list integer default length(par_list_of_chars);
- var_position integer;
- var_result text = '';
- var_random_number integer;
- var_max_value integer;
- var_min_value integer;
- begin
- var_min_value := 10;
- var_max_value := 50;
-
- for var_position in 1 .. par_length loop
- -- добавляем к строке случайный символ
- var_random_number := fn_get_randon_integer(var_min_value, var_max_value );
- var_result := var_result || substr(par_list_of_chars, var_random_number ,1);
- end loop;
-
- return var_result;
-
- end;
- $body$;
- -- Функция для расчета метео приближенный
- drop function if exists fn_calc_header_meteo_avg;
- create function fn_calc_header_meteo_avg(
- par_params input_params_type
- )
- returns text
- language 'plpgsql'
- as $body$
- declare
- var_result text;
- var_params input_params_type;
- begin
- -- Проверяю аргументы
- var_params := public.fn_check_input_params(par_params);
-
- select
- -- Дата
- public.fn_calc_header_period(now()) ||
- --Высота расположения метеопоста над уровнем моря.
- lpad( 340::text, 4, '0' ) ||
- -- Отклонение наземного давления атмосферы
- lpad(
- case when coalesce(var_params.pressure,0) < 0 then
- '5'
- else ''
- end ||
- lpad ( abs(( coalesce(var_params.pressure, 0) )::int)::text,2,'0')
- , 3, '0') as "БББ",
- -- Отклонение приземной виртуальной температуры
- lpad(
- case when coalesce( var_params.temperature, 0) < 0 then
- '5'
- else
- ''
- end ||
- ( coalesce(var_params.temperature,0)::int)::text
- , 2,'0')
- into var_result;
- return var_result;
- end;
- $body$;
- raise notice 'Структура сформирована успешно';
- end $$;
- -- //////////////////////////////////////////////////////////////////////////////
- -- Проверка расчета
- do $$
- declare
- var_pressure_value numeric(8,2) default 0;
- var_temperature_value numeric(8,2) default 0;
-
- var_period text;
- var_pressure text;
- var_height text;
- var_temperature text;
- begin
- var_pressure_value := round(public.fn_calc_header_pressure(743));
- var_temperature_value := round( public.fn_calc_header_temperature(3));
-
- select
- -- Дата
- public.fn_calc_header_period(now()) as "ДДЧЧМ",
- --Высота расположения метеопоста над уровнем моря.
- lpad( 340::text, 4, '0' ) as "ВВВВ",
- -- Отклонение наземного давления атмосферы
- lpad(
- case when var_pressure_value < 0 then
- '5'
- else ''
- end ||
- lpad ( abs((var_pressure_value)::int)::text,2,'0')
- , 3, '0') as "БББ",
- -- Отклонение приземной виртуальной температуры
- lpad(
- case when var_temperature_value < 0 then
- '5'
- else
- ''
- end ||
- (abs(var_temperature_value)::int)::text
- , 2,'0') as "TT"
- into
- var_period, var_height, var_pressure, var_temperature;
- raise notice '==============================';
- raise notice 'Пример расчета метео приближенный';
- raise notice 'ДДЧЧМ %, ВВВВ %, БББ % , TT %', var_period, var_height, var_pressure, var_temperature;
-
- end $$;
- -- Проверка входных параметров
- do $$
- declare
- var_result public.check_result_type;
- begin
- raise notice '=====================================';
- raise notice 'Проверка работы функции [fn_check_input_params]';
- raise notice 'Положительный сценарий';
-
- -- Корректный вариант
- var_result := public.fn_check_input_params(par_height => 400, par_temperature => 23, par_pressure => 740, par_wind_direction => 5, par_wind_speed => 5, par_bullet_demolition_range => 5 );
-
- if var_result.is_check != True then
- raise notice '-> Проверка не пройдена!';
- else
- raise notice '-> Проверка пройдена';
- end if;
- raise notice 'Сообщени: %', var_result.error_message;
- -- Некорректный вариант
- var_result := public.fn_check_input_params(par_height => -400, par_temperature => 23, par_pressure => 740, par_wind_direction => 5, par_wind_speed => 5, par_bullet_demolition_range => 5 );
- raise notice 'Отрицательный сценарий';
- if var_result.is_check != False then
- raise notice '-> Проверка не пройдена!';
- else
- raise notice '-> Проверка пройдена';
- end if;
-
- raise notice 'Сообщение: %', var_result.error_message;
- raise notice '=====================================';
-
- end $$;
- -- Генерация тестовых данных
- do $$
- declare
- var_position integer;
- var_emploee_ids integer[];
- var_emploee_quantity integer default 5;
- var_min_rank integer;
- var_max_rank integer;
- var_emploee_id integer;
- var_current_emploee_id integer;
- var_index integer;
- var_measure_type_id integer;
- var_measure_input_data_id integer;
- begin
- -- Определяем макс дипазон по должностям
- select min(id), max(id)
- into var_min_rank,var_max_rank
- from public.military_ranks;
-
- -- Формируем список пользователей
- for var_position in 1 .. var_emploee_quantity loop
- insert into public.employees(name, birthday, military_rank_id )
- select
- fn_get_random_text(25), -- name
- fn_get_random_timestamp('1978-01-01','2000-01-01'), -- birthday
- fn_get_randon_integer(var_min_rank, var_max_rank) -- military_rank_id
- ;
- select id into var_emploee_id from public.employees order by id desc limit 1;
- var_emploee_ids := var_emploee_ids || var_emploee_id;
- end loop;
- raise notice 'Сформированы тестовые пользователи %', var_emploee_ids;
- -- Формируем для каждого по 100 измерений
- foreach var_current_emploee_id in ARRAY var_emploee_ids LOOP
- for var_index in 1 .. 100 loop
- var_measure_type_id := fn_get_randon_integer(1,2);
-
- insert into public.measurment_input_params(measurment_type_id, height, temperature, pressure, wind_direction, wind_speed)
- select
- var_measure_type_id,
- fn_get_randon_integer(0,600)::numeric(8,2), -- height
- fn_get_randon_integer(0, 50)::numeric(8,2), -- temperature
- fn_get_randon_integer(500, 850)::numeric(8,2), -- pressure
- fn_get_randon_integer(0,59)::numeric(8,2), -- ind_direction
- fn_get_randon_integer(0,59)::numeric(8,2) -- wind_speed
- ;
- select id into var_measure_input_data_id from measurment_input_params order by id desc limit 1;
-
- insert into public.measurment_baths( emploee_id, measurment_input_param_id, started)
- select
- var_current_emploee_id,
- var_measure_input_data_id,
- fn_get_random_timestamp('2025-02-01 00:00', '2025-02-05 00:00')
- ;
- end loop;
-
- end loop;
- raise notice 'Набор тестовых данных сформирован успешно';
-
- end $$;
- create view vw_report_fails_statistics
- as
- -- Отчет: Статистика ошибок при проведении измерений
- -- ФИО, должность, количество измерений, количество ошибок
- with emploee_cte as
- (
- -- ФИО | Должность
- select
- t1.id , t1.name as user_name, t2.description as position
- from public.employees as t1
- inner join public.military_ranks as t2 on t1.military_rank_id = t2.id
- ),
- measurements_cte as
- (
- -- Кол-во измерений
- select count(*) as quantity, emploee_id
- from public.measurment_input_params as t1
- inner join public.measurment_baths as t2 on t2.measurment_input_param_id = t1.id
- group by emploee_id
- ),
- fails_cte as
- (
- -- Количество ошибочных данных
- select
- count(*) as quantity_fails,
- emploee_id
- from public.measurment_input_params as t1
- inner join public.measurment_baths as t2 on t2.measurment_input_param_id = t1.id
- where
- (public.fn_check_input_params(height, temperature, pressure, wind_direction, wind_speed, bullet_demolition_range)::public.check_result_type).is_check = False
- group by emploee_id
- )
- -- Основной запрос
- select
- user_name, position, coalesce(quantity,0) as quantity, coalesce(quantity_fails,0) as quantity_fails
- from emploee_cte as t1
- left join measurements_cte as t2 on t1.id = t2.emploee_id
- left join fails_cte as t3 on t1.id = t3.emploee_id
- order by coalesce(quantity_fails,0) desc;
- create view vw_report_fails_height_statistics
- as
- -- Отчет: "Самая эффективная высота измерения"
- -- | ФИО пользователя | Звание | Мин. высота метеопоста | Макс. высота метепоста | Всего измерений | Из них ошибочны |
- with emploee_cte as
- (
- -- ФИО | Должность
- select
- t1.id , t1.name as user_name, t2.description as position
- from public.employees as t1
- inner join public.military_ranks as t2 on t1.military_rank_id = t2.id
- ),
- measurements_cte as
- (
- -- Кол-во измерений
- select count(*) as quantity, emploee_id
- from public.measurment_input_params as t1
- inner join public.measurment_baths as t2 on t2.measurment_input_param_id = t1.id
- group by emploee_id
- ),
- fails_cte as
- (
- -- Количество ошибочных данных
- select
- count(*) as quantity_fails,
- emploee_id
- from public.measurment_input_params as t1
- inner join public.measurment_baths as t2 on t2.measurment_input_param_id = t1.id
- where
- (public.fn_check_input_params(height, temperature, pressure, wind_direction, wind_speed, bullet_demolition_range)::public.check_result_type).is_check = False
- group by emploee_id
- ),
- measurments_height_cte as
- (
- -- Статистика по высотам
- select min(height) as min_height, max(height) as max_height, emploee_id
- from public.measurment_input_params as t1
- inner join public.measurment_baths as t2 on t2.measurment_input_param_id = t1.id
- group by emploee_id
- )
- -- Основной запрос
- select
- user_name, position, coalesce(quantity,0) as quantity, coalesce(quantity_fails,0) as quantity_fails,
- coalesce(min_height, 0) as min_height, coalesce(max_height, 0) as max_height
- from emploee_cte as t1
- left join measurements_cte as t2 on t1.id = t2.emploee_id
- left join fails_cte as t3 on t1.id = t3.emploee_id
- left join measurments_height_cte as t4 on t1.id = t4.emploee_id
- order by coalesce(quantity_fails,0) asc, coalesce(min_height, 0) asc ;
- -- Процедура расчета всех поправок по всем высотам
- drop procedure if exists sp_calc_corrections;
- create procedure public.sp_calc_corrections(
- in par_input_params input_params_type,
- in par_measurement_type_id integer,
- inout par_results calc_result_type[]
- )
- language 'plpgsql'
- as $body$
- declare
- var_header integer[];
- var_values integer[];
- var_result calc_result_type;
- var_correction_type_id integer;
- var_rec_height record;
- var_index integer;
- var_left_index integer;
- var_right_index integer;
- var_left_value integer;
- var_right_value integer;
- var_interpolation interpolation_type;
- -- Тип таблица 2, положительные значения
- var_table2_positive_values integer default 7;
- -- Тип таблица 2, отрицательные значения
- var_table2_negative_values integer default 8;
- -- Тип таблица 2, заголовок
- var_table2_header integer default 1;
- -- Тип таблица 3, скорость среднего ветра
- var_table3_wind_speed integer default 2;
- -- Тип Таблица 3, направление среднего ветра
- var_table3_wind_direction integer default 3;
-
- begin
- -- Входные параметры
- par_input_params.height := 400;
- par_input_params.temperature := 24;
- par_input_params.pressure := 700;
- par_input_params.wind_direction := 10;
- par_input_params.wind_speed := 40;
- par_input_params.bullet_demolition_range := 6;
- if not exists (select 1 from public.measurment_types where id = par_measurement_type_id) then
- raise exception 'Некорректно указан тип оборудования по коду %', par_measurement_type_id;
- end if;
- raise notice 'Расчет для оборудования %, параметры %', par_measurement_type_id,par_input_params;
- par_input_params := public.fn_check_input_params(par_param => par_input_params);
- raise notice 'Проверка входных параметров пройдена';
-
- for var_rec_height in
- select * from public.calc_corrections_height loop
- -- Инициализация
- var_result.deltapressure := 0;
- var_result.deltatemperature := 0;
- var_result.deviationtemperature := 0;
- var_result.deviationwind := 0;
- var_result.deviationwinddirection := 0;
- -- Текущая высота
- var_result.height := var_rec_height.height;
- -- Текущий тип измерения
- var_result.measurement_type_id := par_measurement_type_id;
- -- Отклонение наземного давления атмосферы
- var_result.deltapressure := public.fn_calc_header_pressure( par_input_params.pressure);
- -- Отклонение приземной виртуальной температуры
- var_result.deltatemperature := public.fn_calc_header_temperature(par_input_params.temperature);
- -- =======================================================
- -- Средние отклонения температуры воздух
- -- Получаем заголовок Таблица 2
- var_header := (select values from public.calc_correction_types where id = var_table2_header );
- -- Получаем список значений по текущей высоте
- var_values :=
- case when var_result.deltatemperature >= 0 then
- -- Положительные значения
- (select values from public.calc_corrections
- where calc_correction_type_id = var_table2_positive_values
- and calc_height_id = var_rec_height.id limit 1)
- else
- -- Отрицательные значения
- (select values from public.calc_corrections
- where calc_correction_type_id = var_table2_negative_values
- and calc_height_id = var_rec_height.id limit 1)
- end;
-
- if var_values is null then
- -- Для текущей высоты нет данных
- continue;
- end if;
-
- -- Определяем индексы
- select max(position)
- into var_left_index
- from unnest(var_header) as position
- where position <= var_result.deltatemperature;
- select min(position)
- into var_right_index
- from unnest(var_header) as position
- where position > var_result.deltatemperature;
- -- Определяем значения
- var_left_value := var_values[ var_left_index ];
- var_right_value := var_values[ var_right_index ];
- -- Получаем значение корректировки путем расчета интерполяции
- var_interpolation.x0 := var_left_index;
- var_interpolation.x1 := var_right_index;
- var_interpolation.y0 := var_left_value;
- var_interpolation.y1 := var_right_value;
- -- Получаем расчетное значение поаправки по температуре
- var_result.deviationtemperature :=
- round(fn_calc_interpolation( var_result.deltatemperature, var_interpolation));
-
- -- ======================================================
- -- Скорость среднего ветра
- -- Получаем заголовок и данные
- select id
- into var_correction_type_id
- from calc_correction_types where
- measurment_type_id = par_measurement_type_id and parent_id = var_table3_wind_speed ;
-
- var_header := (select values from public.calc_correction_types
- where measurment_type_id = par_measurement_type_id and parent_id = var_table3_wind_speed );
- var_values := (select values from calc_corrections
- where calc_correction_type_id = var_correction_type_id
- and calc_height_id = var_rec_height.id limit 1);
-
- -- Получаем индекс
- select
- coalesce(min(position), 1) from
- into var_index
- unnest(var_header) as position
- where position > round(par_input_params.wind_speed);
- var_result.deviationwind := var_values[var_index] ;
- -- =====================================================
- -- Направление среднего ветра
- select id
- into var_correction_type_id
- from calc_correction_types where
- measurment_type_id = par_measurement_type_id and parent_id = var_table3_wind_direction ;
-
- var_values := (select values from calc_corrections
- where calc_correction_type_id = var_correction_type_id
- and calc_height_id = var_rec_height.id limit 1);
-
- select
- position
- into var_result.deviationwinddirection
- from
- unnest(var_values) as position
- limit 1;
- par_results := array_append(par_results, var_result);
-
- end loop;
- raise notice 'Расчет поправок завершен успешно';
-
- end;
- $body$;
- -- Проверка отчета
- select * from vw_report_fails_height_statistics
|