├── .gitignore ├── 170216_CIMMS_COPYRIGHT.docx ├── LICENSE.md ├── MFS-33436_NOSA.doc ├── README.md ├── RELEASE_NOTES ├── description.txt ├── examples ├── 20090410_173943_ARMOR_v001_PPI.uf.gz ├── 20090410_174143_KHTX_v537_SUR.uf.gz ├── MultiDop_Sample_Workflow.ipynb ├── cfrad.20090410_173943.000_to_20090410_174207.000_ARMOR_PPI.nc.gz └── cfrad.20090410_174143.420_to_20090410_174559.543_KHTX_Surveillance_SUR.nc.gz ├── multidop ├── __init__.py ├── angles.py ├── execute.py ├── grid_io.py └── parameters.py ├── readme_dda_old.txt ├── setup.py └── src ├── DDA.c ├── DDA.h ├── Makefile ├── Namelist ├── REAMDE_old ├── alloc.c ├── alloc.h ├── coverage.c ├── coverage.h ├── distribs ├── geog_lib.c ├── geog_lib.h ├── geog_proj.c ├── geog_proj.h ├── leise_example.c ├── leise_filt.f ├── mk_distrib ├── nnetcdf.c ├── nnetcdf.h ├── share └── man │ └── man3 │ ├── geog_lib.3 │ ├── geog_proj.3 │ └── nnetcdf.3 └── unix_defs.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/.gitignore -------------------------------------------------------------------------------- /170216_CIMMS_COPYRIGHT.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/170216_CIMMS_COPYRIGHT.docx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MFS-33436_NOSA.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/MFS-33436_NOSA.doc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/RELEASE_NOTES -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/description.txt -------------------------------------------------------------------------------- /examples/20090410_173943_ARMOR_v001_PPI.uf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/examples/20090410_173943_ARMOR_v001_PPI.uf.gz -------------------------------------------------------------------------------- /examples/20090410_174143_KHTX_v537_SUR.uf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/examples/20090410_174143_KHTX_v537_SUR.uf.gz -------------------------------------------------------------------------------- /examples/MultiDop_Sample_Workflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/examples/MultiDop_Sample_Workflow.ipynb -------------------------------------------------------------------------------- /examples/cfrad.20090410_173943.000_to_20090410_174207.000_ARMOR_PPI.nc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/examples/cfrad.20090410_173943.000_to_20090410_174207.000_ARMOR_PPI.nc.gz -------------------------------------------------------------------------------- /examples/cfrad.20090410_174143.420_to_20090410_174559.543_KHTX_Surveillance_SUR.nc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/examples/cfrad.20090410_174143.420_to_20090410_174559.543_KHTX_Surveillance_SUR.nc.gz -------------------------------------------------------------------------------- /multidop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/multidop/__init__.py -------------------------------------------------------------------------------- /multidop/angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/multidop/angles.py -------------------------------------------------------------------------------- /multidop/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/multidop/execute.py -------------------------------------------------------------------------------- /multidop/grid_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/multidop/grid_io.py -------------------------------------------------------------------------------- /multidop/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/multidop/parameters.py -------------------------------------------------------------------------------- /readme_dda_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/readme_dda_old.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/setup.py -------------------------------------------------------------------------------- /src/DDA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/DDA.c -------------------------------------------------------------------------------- /src/DDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/DDA.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Namelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/Namelist -------------------------------------------------------------------------------- /src/REAMDE_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/REAMDE_old -------------------------------------------------------------------------------- /src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/alloc.c -------------------------------------------------------------------------------- /src/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/alloc.h -------------------------------------------------------------------------------- /src/coverage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/coverage.c -------------------------------------------------------------------------------- /src/coverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/coverage.h -------------------------------------------------------------------------------- /src/distribs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/distribs -------------------------------------------------------------------------------- /src/geog_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/geog_lib.c -------------------------------------------------------------------------------- /src/geog_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/geog_lib.h -------------------------------------------------------------------------------- /src/geog_proj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/geog_proj.c -------------------------------------------------------------------------------- /src/geog_proj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/geog_proj.h -------------------------------------------------------------------------------- /src/leise_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/leise_example.c -------------------------------------------------------------------------------- /src/leise_filt.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/leise_filt.f -------------------------------------------------------------------------------- /src/mk_distrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/mk_distrib -------------------------------------------------------------------------------- /src/nnetcdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/nnetcdf.c -------------------------------------------------------------------------------- /src/nnetcdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/nnetcdf.h -------------------------------------------------------------------------------- /src/share/man/man3/geog_lib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/share/man/man3/geog_lib.3 -------------------------------------------------------------------------------- /src/share/man/man3/geog_proj.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/share/man/man3/geog_proj.3 -------------------------------------------------------------------------------- /src/share/man/man3/nnetcdf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/share/man/man3/nnetcdf.3 -------------------------------------------------------------------------------- /src/unix_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/MultiDop/HEAD/src/unix_defs.h --------------------------------------------------------------------------------