├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── FindNetCDF.cmake ├── INSTALL.md ├── LICENSE ├── README.md ├── resources ├── README ├── Ubuntu-Font-License.txt ├── Ubuntu-Regular.ttf ├── algae.rgb ├── amp.rgb ├── balance.rgb ├── curl.rgb ├── deep.rgb ├── delta.rgb ├── dense.rgb ├── diff.rgb ├── gray.rgb ├── haline.rgb ├── ice.rgb ├── matter.rgb ├── ne_110m_admin_0_countries.shp ├── ne_110m_coastline.shp ├── oxy.rgb ├── phase.rgb ├── rain.rgb ├── solar.rgb ├── speed.rgb ├── tarn.rgb ├── tempo.rgb ├── thermal.rgb ├── topo.rgb └── turbid.rgb └── src ├── Announce.cpp ├── Announce.h ├── CMakeLists.txt ├── ColorMap.cpp ├── ColorMap.h ├── CoordTransforms.h ├── Exception.h ├── GridDataSampler.cpp ├── GridDataSampler.h ├── NcVisPlotOptions.h ├── QuadTree.h ├── STLStringHelper.h ├── ShpFile.cpp ├── ShpFile.h ├── TimeObj.cpp ├── TimeObj.h ├── config.h ├── kdtree.cpp ├── kdtree.h ├── lodepng.cpp ├── lodepng.h ├── ncvalues.cpp ├── ncvalues.h ├── ncvis.cpp ├── netcdf.cpp ├── netcdfcpp.h ├── order32.h ├── schrift.cpp ├── schrift.h ├── utf8_to_utf32.h ├── wxImagePanel.cpp ├── wxImagePanel.h ├── wxNcVisExportDialog.cpp ├── wxNcVisExportDialog.h ├── wxNcVisFrame.cpp ├── wxNcVisFrame.h ├── wxNcVisOptionsDialog.cpp └── wxNcVisOptionsDialog.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FindNetCDF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/FindNetCDF.cmake -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/README.md -------------------------------------------------------------------------------- /resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/README -------------------------------------------------------------------------------- /resources/Ubuntu-Font-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/Ubuntu-Font-License.txt -------------------------------------------------------------------------------- /resources/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /resources/algae.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/algae.rgb -------------------------------------------------------------------------------- /resources/amp.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/amp.rgb -------------------------------------------------------------------------------- /resources/balance.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/balance.rgb -------------------------------------------------------------------------------- /resources/curl.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/curl.rgb -------------------------------------------------------------------------------- /resources/deep.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/deep.rgb -------------------------------------------------------------------------------- /resources/delta.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/delta.rgb -------------------------------------------------------------------------------- /resources/dense.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/dense.rgb -------------------------------------------------------------------------------- /resources/diff.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/diff.rgb -------------------------------------------------------------------------------- /resources/gray.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/gray.rgb -------------------------------------------------------------------------------- /resources/haline.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/haline.rgb -------------------------------------------------------------------------------- /resources/ice.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/ice.rgb -------------------------------------------------------------------------------- /resources/matter.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/matter.rgb -------------------------------------------------------------------------------- /resources/ne_110m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/ne_110m_admin_0_countries.shp -------------------------------------------------------------------------------- /resources/ne_110m_coastline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/ne_110m_coastline.shp -------------------------------------------------------------------------------- /resources/oxy.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/oxy.rgb -------------------------------------------------------------------------------- /resources/phase.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/phase.rgb -------------------------------------------------------------------------------- /resources/rain.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/rain.rgb -------------------------------------------------------------------------------- /resources/solar.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/solar.rgb -------------------------------------------------------------------------------- /resources/speed.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/speed.rgb -------------------------------------------------------------------------------- /resources/tarn.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/tarn.rgb -------------------------------------------------------------------------------- /resources/tempo.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/tempo.rgb -------------------------------------------------------------------------------- /resources/thermal.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/thermal.rgb -------------------------------------------------------------------------------- /resources/topo.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/topo.rgb -------------------------------------------------------------------------------- /resources/turbid.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/resources/turbid.rgb -------------------------------------------------------------------------------- /src/Announce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/Announce.cpp -------------------------------------------------------------------------------- /src/Announce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/Announce.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ColorMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/ColorMap.cpp -------------------------------------------------------------------------------- /src/ColorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/ColorMap.h -------------------------------------------------------------------------------- /src/CoordTransforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/CoordTransforms.h -------------------------------------------------------------------------------- /src/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/Exception.h -------------------------------------------------------------------------------- /src/GridDataSampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/GridDataSampler.cpp -------------------------------------------------------------------------------- /src/GridDataSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/GridDataSampler.h -------------------------------------------------------------------------------- /src/NcVisPlotOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/NcVisPlotOptions.h -------------------------------------------------------------------------------- /src/QuadTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/QuadTree.h -------------------------------------------------------------------------------- /src/STLStringHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/STLStringHelper.h -------------------------------------------------------------------------------- /src/ShpFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/ShpFile.cpp -------------------------------------------------------------------------------- /src/ShpFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/ShpFile.h -------------------------------------------------------------------------------- /src/TimeObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/TimeObj.cpp -------------------------------------------------------------------------------- /src/TimeObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/TimeObj.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/config.h -------------------------------------------------------------------------------- /src/kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/kdtree.cpp -------------------------------------------------------------------------------- /src/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/kdtree.h -------------------------------------------------------------------------------- /src/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/lodepng.cpp -------------------------------------------------------------------------------- /src/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/lodepng.h -------------------------------------------------------------------------------- /src/ncvalues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/ncvalues.cpp -------------------------------------------------------------------------------- /src/ncvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/ncvalues.h -------------------------------------------------------------------------------- /src/ncvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/ncvis.cpp -------------------------------------------------------------------------------- /src/netcdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/netcdf.cpp -------------------------------------------------------------------------------- /src/netcdfcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/netcdfcpp.h -------------------------------------------------------------------------------- /src/order32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/order32.h -------------------------------------------------------------------------------- /src/schrift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/schrift.cpp -------------------------------------------------------------------------------- /src/schrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/schrift.h -------------------------------------------------------------------------------- /src/utf8_to_utf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/utf8_to_utf32.h -------------------------------------------------------------------------------- /src/wxImagePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxImagePanel.cpp -------------------------------------------------------------------------------- /src/wxImagePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxImagePanel.h -------------------------------------------------------------------------------- /src/wxNcVisExportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxNcVisExportDialog.cpp -------------------------------------------------------------------------------- /src/wxNcVisExportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxNcVisExportDialog.h -------------------------------------------------------------------------------- /src/wxNcVisFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxNcVisFrame.cpp -------------------------------------------------------------------------------- /src/wxNcVisFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxNcVisFrame.h -------------------------------------------------------------------------------- /src/wxNcVisOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxNcVisOptionsDialog.cpp -------------------------------------------------------------------------------- /src/wxNcVisOptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SEATStandards/ncvis/HEAD/src/wxNcVisOptionsDialog.h --------------------------------------------------------------------------------