Skip to content

Commit

Permalink
clean up redundant files
Browse files Browse the repository at this point in the history
  • Loading branch information
smnorris committed Jan 7, 2024
1 parent 0dc54cd commit 83597aa
Show file tree
Hide file tree
Showing 15 changed files with 13 additions and 1,466 deletions.
14 changes: 13 additions & 1 deletion model/01_access/dams/sql/dams.sql
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,16 @@ where cabd_id in (
'ba5fe3eb-7bbe-45c1-b301-555872387c16',
'8a6b10fa-0d4f-4c45-857c-764d7e8028f8',
'48478e95-e063-4df6-a047-6aaf6087011b'
);
);

# report on dams that do not get matched to FWA streams
drop view if exists bcfishpass.dams_not_matched_to_streams;
create view bcfishpass.dams_not_matched_to_streams as
select
a.cabd_id,
a.dam_name_en
from cabd.dams a
left join bcfishpass.dams b
on a.cabd_id::text = b.dam_id
where b.dam_id is null
order by a.cabd_id;
18 changes: 0 additions & 18 deletions reports/access/README.md

This file was deleted.

10 changes: 0 additions & 10 deletions reports/access/access_ch_cm_co_pk_sk.csv

This file was deleted.

10 changes: 0 additions & 10 deletions reports/access/access_st.csv

This file was deleted.

10 changes: 0 additions & 10 deletions reports/access/sql/access_ch_cm_co_pk_sk.sql

This file was deleted.

10 changes: 0 additions & 10 deletions reports/access/sql/access_st.sql

This file was deleted.

28 changes: 0 additions & 28 deletions reports/crossings/sql/all_spawningrearing_per_barrier.sql

This file was deleted.

55 changes: 0 additions & 55 deletions reports/crossings/sql/crossings_admin.sql

This file was deleted.

Loading

0 comments on commit 83597aa

Please sign in to comment.