Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

196 selection class #205

Merged
merged 35 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
b4570a5
updates
mpound Jan 30, 2024
5e40f02
sketchfor selection
mpound Jan 30, 2024
f1611fd
starting version based on Table
mpound Feb 2, 2024
8d52dce
exclude empty columns when printing
mpound Feb 5, 2024
50bf863
add selection
mpound Feb 5, 2024
d4c5db5
add default sdfits columns
mpound Feb 5, 2024
253e927
add generate_tag
mpound Feb 5, 2024
61f8f12
some parsing
mpound Feb 5, 2024
3b7da28
various
mpound Feb 20, 2024
5c65fa3
Merge branch 'main' of github.com:GreenBankObservatory/dysh
mpound Feb 22, 2024
708632d
Merge branch 'main' of github.com:GreenBankObservatory/dysh
mpound Feb 26, 2024
d3534dd
dataframe based selection
mpound Feb 27, 2024
b394897
temp rename
mpound Feb 27, 2024
b06b430
rename
mpound Feb 27, 2024
6d45faf
Merge branch 'tinker-selection' into 196_selection_class
mpound Feb 27, 2024
fa42e24
dataframe version
mpound Feb 27, 2024
cd725b8
remove temp version
mpound Feb 27, 2024
b269735
1. allow aliases
mpound Feb 28, 2024
cb37d9a
deal with ranges and quantities (coordinates). remove unused method
mpound Feb 28, 2024
884a537
range working, or working for string arrays, need to fix re-allow num…
mpound Feb 29, 2024
e63f59d
bump up allowed test file size to 10MB
mpound Feb 29, 2024
7755c4c
first version of testing selection class. need to fix selection.remove
mpound Feb 29, 2024
d8326d6
fits file for testing selection class
mpound Feb 29, 2024
58a1179
rework DEFKEYS in constructor, fix test against number, add skelentio…
mpound Feb 29, 2024
72d05eb
add __del__ method to ensure that HDUs are closed when object is dest…
mpound Mar 1, 2024
30fc132
Add aliases.
mpound Mar 1, 2024
039d515
add GBT timstamp converter
mpound Mar 1, 2024
ce0a1a7
add elevation and channel range tests
mpound Mar 1, 2024
0c18627
scale is utc for timestamps
mpound Mar 4, 2024
9430a61
add code to deal with Time objects in selection
mpound Mar 4, 2024
d3d3a87
documentation updates
mpound Mar 4, 2024
c8d8358
example of how selection works
mpound Mar 4, 2024
c1c6fd0
fix method signature of aliases(). remove debug prints
mpound Mar 4, 2024
f043062
add test for remove
mpound Mar 4, 2024
95d16b4
add testselection.fits
mpound Mar 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
- id: check-toml
- id: check-added-large-files
args:
- '--maxkb=1024'
- '--maxkb=1024000'
- id: debug-statements
- id: detect-private-key
- id: mixed-line-ending
Expand Down
5 changes: 5 additions & 0 deletions docs/source/modules/dysh.util.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Utility classes and functions
:undoc-members:
:show-inheritance:

.. automodule:: dysh.util.selection
:members:
:undoc-members:
:show-inheritance:

.. automodule:: dysh.util.core
:members:
:undoc-members:
Expand Down
Loading
Loading