Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Andre Gosselin <Andre.Gosselin@dfo-mpo.gc.ca>
@bmagill1250
@dmarth
Fazlul Shahriar <fshahriar@gmail.com>
HDF-EOS Tools Informatoin Center <eoshelp@hdfgroup.org>
HDF-EOS Tools Information Center <eoshelp@hdfgroup.org>
H. Joe Lee <hyoklee@hdfgroup.org>
Travis E. Oliphant <teoliphant@gmail.com>
8 changes: 4 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ THE SOFTWARE.


Built distributions of pyhdf also include:
Libary | License
- hdf | BSD-3
- jpeg | Custom BSD-like
- zlib | zlib
Library | License
- hdf | BSD-3
- jpeg | Custom BSD-like
- zlib | zlib
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Once you're in the conda environment, install `pyhdf from conda-forge

If you don't want to use conda, the instructions below describes how you
can compile pyhdf from source. Version 0.10.3 also includes static linked wheels for
linux with cpython 3.6-3.9. If compatible, `pip install pyhdf` will include the neccessary
linux with cpython 3.6-3.9. If compatible, `pip install pyhdf` will include the necessary
libraries for you. If you don't want to use the built manylinux distribution, follow instructions
below to build from source downloading from pypi with `pip install pyhdf --no-binary :all:`.

Expand Down
2 changes: 1 addition & 1 deletion pyhdf/SD.py
Original file line number Diff line number Diff line change
Expand Up @@ -3087,7 +3087,7 @@ def setscale(self, data_type, scale):
buf = _C.array_float64(n_values)

else:
raise HDF4Error("setscale: illegal or usupported data_type")
raise HDF4Error("setscale: illegal or unsupported data_type")

if n_values == 1:
buf[0] = scale
Expand Down
4 changes: 2 additions & 2 deletions pyhdf/VS.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ class method. The names of predefined attributes all start with an
following examples). However, the VS API prohibits changing an attribute
type when updating its value. Since the length (order) of an attribute
is part of its type, we make sure of setting the attribute to a length
long enough to accommodate the longest possible string we migh want to
long enough to accommodate the longest possible string we might want to
assign to the attribute.

Appending records to a vdata
Expand Down Expand Up @@ -2053,7 +2053,7 @@ def __buildStartCount(self, elem, setitem=0):
# - tuple of the start indices along the vdata dimensions
# - tuple of the count values along the vdata dimensions
# a count of -1 indicates that an index, not a slice
# was applied on the correcponding dimension.
# was applied on the corresponding dimension.

# Make sure the indexing expression does not exceed the
# vdata number of dimensions (2).
Expand Down