├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── UdunitsTables ├── BuildUnitsGraph.py ├── README.md ├── WriteUnitsPage.py └── graph.png ├── lib └── bald │ ├── __init__.py │ ├── datetime.py │ ├── distribution.py │ ├── tests │ ├── __init__.py │ ├── integration │ │ ├── CDL │ │ │ ├── GEMS_CO2_Apr2006.cdl │ │ │ ├── ProcessChain0300.cdl │ │ │ ├── array_geo.cdl │ │ │ ├── array_multitypes.cdl │ │ │ ├── array_reference.cdl │ │ │ ├── array_reference_external_prefix_context.cdl │ │ │ ├── ereefs_gbr4_ncld.cdl │ │ │ ├── grid_OISST_GHRSST.cdl │ │ │ ├── group_array_geo.cdl │ │ │ ├── multi_array_reference.cdl │ │ │ ├── point_template.cdl │ │ │ ├── profile_template.cdl │ │ │ ├── swath_AMSU_Brightness_Temp.cdl │ │ │ ├── timeSeriesProfile_template.cdl │ │ │ ├── timeSeries_template.cdl │ │ │ ├── trajectoryProfile_template.cdl │ │ │ ├── trajectory_AfricanEasterlyWave.cdl │ │ │ ├── trajectory_template.cdl │ │ │ └── votemper.cdl │ │ ├── HTML │ │ │ ├── array_reference.html │ │ │ ├── hdf_container_nest.html │ │ │ └── multi_array_reference.html │ │ ├── TTL │ │ │ ├── GEMS_CO2_Apr2006.ttl │ │ │ ├── ProcessChain0300.ttl │ │ │ ├── array_reference.ttl │ │ │ ├── array_reference2.ttl │ │ │ ├── array_reference_external_prefix_context.ttl │ │ │ ├── array_reference_withbase.ttl │ │ │ ├── ereefs_gbr4_ncld.ttl │ │ │ ├── group_array_geo.ttl │ │ │ ├── hgroups.ttl │ │ │ ├── hgroups_schema.org.ttl │ │ │ ├── multi_array_reference.ttl │ │ │ ├── point_template.ttl │ │ │ └── votemper.ttl │ │ ├── __init__.py │ │ ├── test_aliases.py │ │ ├── test_cdl.py │ │ ├── test_cdl_graph.py │ │ ├── test_cdl_rdfgraph.py │ │ ├── test_cdl_sparql.py │ │ ├── test_hdf_graph.py │ │ ├── test_multi_array_reference.py │ │ ├── test_netcdf.py │ │ ├── test_netcdf4_classic.py │ │ ├── test_ogc_conformance.py │ │ └── test_validation.py │ ├── test_array_reference.py │ ├── test_simple.py │ └── unit │ │ ├── __init__.py │ │ ├── test_HttpCache.py │ │ └── test_init_nc_shared_dims.py │ ├── units.py │ └── validation.py ├── nc2rdf ├── README.md ├── bald2schemaorg_mappings.json └── nc2rdf.py ├── ncldDump ├── ReadMe.txt ├── aliases.json ├── ncldDump.py └── ncldDump_template.html ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/README.md -------------------------------------------------------------------------------- /UdunitsTables/BuildUnitsGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/UdunitsTables/BuildUnitsGraph.py -------------------------------------------------------------------------------- /UdunitsTables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/UdunitsTables/README.md -------------------------------------------------------------------------------- /UdunitsTables/WriteUnitsPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/UdunitsTables/WriteUnitsPage.py -------------------------------------------------------------------------------- /UdunitsTables/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/UdunitsTables/graph.png -------------------------------------------------------------------------------- /lib/bald/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/__init__.py -------------------------------------------------------------------------------- /lib/bald/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/datetime.py -------------------------------------------------------------------------------- /lib/bald/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/distribution.py -------------------------------------------------------------------------------- /lib/bald/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/__init__.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/GEMS_CO2_Apr2006.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/GEMS_CO2_Apr2006.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/ProcessChain0300.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/ProcessChain0300.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/array_geo.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/array_geo.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/array_multitypes.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/array_multitypes.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/array_reference.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/array_reference.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/array_reference_external_prefix_context.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/array_reference_external_prefix_context.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/ereefs_gbr4_ncld.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/ereefs_gbr4_ncld.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/grid_OISST_GHRSST.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/grid_OISST_GHRSST.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/group_array_geo.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/group_array_geo.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/multi_array_reference.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/multi_array_reference.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/point_template.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/point_template.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/profile_template.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/profile_template.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/swath_AMSU_Brightness_Temp.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/swath_AMSU_Brightness_Temp.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/timeSeriesProfile_template.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/timeSeriesProfile_template.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/timeSeries_template.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/timeSeries_template.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/trajectoryProfile_template.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/trajectoryProfile_template.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/trajectory_AfricanEasterlyWave.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/trajectory_AfricanEasterlyWave.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/trajectory_template.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/trajectory_template.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/CDL/votemper.cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/CDL/votemper.cdl -------------------------------------------------------------------------------- /lib/bald/tests/integration/HTML/array_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/HTML/array_reference.html -------------------------------------------------------------------------------- /lib/bald/tests/integration/HTML/hdf_container_nest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/HTML/hdf_container_nest.html -------------------------------------------------------------------------------- /lib/bald/tests/integration/HTML/multi_array_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/HTML/multi_array_reference.html -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/GEMS_CO2_Apr2006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/GEMS_CO2_Apr2006.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/ProcessChain0300.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/ProcessChain0300.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/array_reference.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/array_reference.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/array_reference2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/array_reference2.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/array_reference_external_prefix_context.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/array_reference_external_prefix_context.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/array_reference_withbase.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/array_reference_withbase.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/ereefs_gbr4_ncld.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/ereefs_gbr4_ncld.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/group_array_geo.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/group_array_geo.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/hgroups.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/hgroups.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/hgroups_schema.org.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/hgroups_schema.org.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/multi_array_reference.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/multi_array_reference.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/point_template.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/point_template.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/TTL/votemper.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/TTL/votemper.ttl -------------------------------------------------------------------------------- /lib/bald/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_aliases.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_cdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_cdl.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_cdl_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_cdl_graph.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_cdl_rdfgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_cdl_rdfgraph.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_cdl_sparql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_cdl_sparql.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_hdf_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_hdf_graph.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_multi_array_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_multi_array_reference.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_netcdf.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_netcdf4_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_netcdf4_classic.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_ogc_conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_ogc_conformance.py -------------------------------------------------------------------------------- /lib/bald/tests/integration/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/integration/test_validation.py -------------------------------------------------------------------------------- /lib/bald/tests/test_array_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/test_array_reference.py -------------------------------------------------------------------------------- /lib/bald/tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/test_simple.py -------------------------------------------------------------------------------- /lib/bald/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bald/tests/unit/test_HttpCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/unit/test_HttpCache.py -------------------------------------------------------------------------------- /lib/bald/tests/unit/test_init_nc_shared_dims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/tests/unit/test_init_nc_shared_dims.py -------------------------------------------------------------------------------- /lib/bald/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/units.py -------------------------------------------------------------------------------- /lib/bald/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/lib/bald/validation.py -------------------------------------------------------------------------------- /nc2rdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/nc2rdf/README.md -------------------------------------------------------------------------------- /nc2rdf/bald2schemaorg_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/nc2rdf/bald2schemaorg_mappings.json -------------------------------------------------------------------------------- /nc2rdf/nc2rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/nc2rdf/nc2rdf.py -------------------------------------------------------------------------------- /ncldDump/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/ncldDump/ReadMe.txt -------------------------------------------------------------------------------- /ncldDump/aliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/ncldDump/aliases.json -------------------------------------------------------------------------------- /ncldDump/ncldDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/ncldDump/ncldDump.py -------------------------------------------------------------------------------- /ncldDump/ncldDump_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/ncldDump/ncldDump_template.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | h5py 3 | netCDF4==1.3.1 4 | requests 5 | rdflib 6 | jinja2 7 | six 8 | pyparsing==2.4.7 9 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-array-ld/bald/HEAD/setup.py --------------------------------------------------------------------------------