Skip to content

Commit f069e55

Browse files
committed
Spelling
1 parent 02197b3 commit f069e55

31 files changed

Lines changed: 214 additions & 214 deletions

CHANGELOG.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ambiguous with respect to 32bit and 64bit operating systems.
3939
----------------------------------------------------------------------
4040
Changes from Version 2.0.5 to Version 2.1 (of 6. May 2009)
4141
----------------------------------------------------------------------
42-
Support of MER_FRS (full resulution full swath) products
42+
Support of MER_FRS (full resolution full swath) products
4343
Support of IODD7
4444

4545
----------------------------------------------------------------------
@@ -69,16 +69,16 @@ The new product changes are:
6969
Changes from Version 2.0.2 to Version 2.0.3 (of 5. Nov 2003)
7070
----------------------------------------------------------------------
7171
Bugfix in file epr_band.c:
72-
In function epr_read_band_raster() an error occured if the percentage
72+
In function epr_read_band_raster() an error occurred if the percentage
7373
of raster->source_step_x is bigger than raster->raster_width.
7474
This restriction was removed.
7575

7676
----------------------------------------------------------------------
7777
Changes from Version 2.0.1 to Version 2.0.2 (of 21. June 2003)
7878
----------------------------------------------------------------------
79-
1) Bugfix: MERIS L1b flags now correcly read (read_measurement_...
79+
1) Bugfix: MERIS L1b flags now correctly read (read_measurement_...
8080
"unknown data type")
81-
2) Bugfix: MERIS L2 flags now correcly read (wrong byte order)
81+
2) Bugfix: MERIS L2 flags now correctly read (wrong byte order)
8282
3) Bugfix: MER_RRC_1P products now correctly handled
8383
4) Support for MERIS, AATSR and ASAR child products added
8484
5) Support for new MERIS L2 TOAVI flags included ...
@@ -95,7 +95,7 @@ Changes from Version 2.0.1 to Version 2.0.2 (of 21. June 2003)
9595
----------------------------------------------------------------------
9696
Changes from Version 2.0 to Version 2.0.1 (of 21.03.2003)
9797
----------------------------------------------------------------------
98-
Bugfix: The build-in support for older MERIS L1b/L2 products (IODD 5)
98+
Bugfix: The built-in support for older MERIS L1b/L2 products (IODD 5)
9999
caused that no other product types than MERIS L1b/L2 data products could
100100
be opened. The error message was "epr_create_band_ids: band not found".
101101
Now also the other MERIS, AATSR and ASAR products can be opened again.
@@ -132,7 +132,7 @@ Changes from Version 1.2 to Version 1.3
132132
----------------------------------------------------------------------
133133
Changes from Version 1.1 to Version 1.2
134134
----------------------------------------------------------------------
135-
1) All functions defined in "epr_api.h" now properly return exeptional
135+
1) All functions defined in "epr_api.h" now properly return exceptional
136136
values in case of an error.
137137
2) Some of the API function did not clear the internal API error state.
138138
All public API functions now clear the global error state before
@@ -158,7 +158,7 @@ Changes from Version 1.0 to Version 1.1
158158
/* Gets the dataset_id at the specified position within the product. */
159159
EPR_SDatasetId* epr_get_dataset_id_at(EPR_SProductId* product_id, uint index);
160160

161-
/* Gets the dataset_id coresponding to the specified dataset name. */
161+
/* Gets the dataset_id corresponding to the specified dataset name. */
162162
EPR_SDatasetId* epr_get_dataset_id(EPR_SProductId* product_id, const char* dataset_name);
163163

164164
/* Gets the name of the dataset for the given dataset ID. */
@@ -184,13 +184,13 @@ Changes from Version 1.0 to Version 1.1
184184

185185
'epr_free_dataset_id' is no longer part of the public API.
186186
The dataset IDs retrieved with the 'epr_get_dataset_id' function
187-
do not require an explicite destruction.
187+
do not require an explicit destruction.
188188

189189

190190
'epr_band_dataset_id' is no longer part of the public API.
191191
Please use 'epr_get_band_id' instead.
192192

193193
'epr_free_band_id' is no longer part of the public API.
194194
The dataset IDs retrieved with the 'epr_get_band_id' function
195-
do not require an explicite destruction.
195+
do not require an explicit destruction.
196196

ISSUES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ I+2.0 mp/uk make UNIX shared libraries for IDL API
1616
I+1.2 nf/uk in epr_init_api: check if dddb path is valid, if not log
1717
the problem so that users can solve it by themselves
1818
I+1.2 nf/uk provide a hint in the example source code and README.txt,
19-
that users have to explicitely pass the DDDB path to epr_init_api
19+
that users have to explicitly pass the DDDB path to epr_init_api
2020
or set the environment variable EPR_DDDB_HOME.
2121
The DDDB path is normally "$EPR_C_API_INSTALL_DIR$/dddb" and
2222
is NOT automatically set.

README.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ Documentation
108108
|- docs/
109109
|- html/ - API documentation for C
110110

111-
Aditional documentation listing the supported ENVISAT product tables (required as
111+
Additional documentation listing the supported ENVISAT product tables (required as
112112
a reference for dataset-, field-, band- and flag-names) can be found at:
113113

114114
http://www.brockmann-consult.de/beam/doc/help/general/envisat-products/index.html
115115

116116

117117
Zip Archive Contents
118118

119-
After a successfull unzipping of the epr_api-XXX.zip archive you should get
119+
After a successful unzipping of the epr_api-XXX.zip archive you should get
120120
a folder named epr_api-XXX with following structure:
121121

122122
epr_api-XXX/
@@ -129,7 +129,7 @@ Zip Archive Contents
129129
|- VERSION.txt - the version string
130130
|- CHANGELOG.txt - the changes from version to version
131131
|- LICENSE.txt - the GNU public license
132-
|- makefile - the makefile to buld the epr-c-api static library
132+
|- makefile - the makefile to build the epr-c-api static library
133133
ready to use in your projects
134134

135135

@@ -149,6 +149,6 @@ Thank you for using the EPR API Software.
149149

150150
--------------------------------------------------------------------------------
151151
The EPR API Software is licensed under the terms of the GNU General Public License
152-
aggreement (see the accompanying LICENSE.txt file).
152+
agreement (see the accompanying LICENSE.txt file).
153153
--------------------------------------------------------------------------------
154154
Brockmann Consult 2010

bccunit/src/bccunit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ extern "C" {
5050
struct BcUnitTest* test_first; /* valid for test suites only */
5151
struct BcUnitTest* test_last; /* valid for test suites only */
5252
struct BcUnitTest* test_next; /* valid for test cases only */
53-
int num_tests; /* valid for test suites only, for cases aways 1 */
53+
int num_tests; /* valid for test suites only, for cases always 1 */
5454
};
5555

5656

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</target>
3939

4040
<!-- ========================================= -->
41-
<!-- copy the recources to the build directory -->
41+
<!-- copy the resources to the build directory -->
4242
<!-- ========================================= -->
4343
<target name="copy_generate_resources" depends="init">
4444
<copy todir="${build}/${epr_api}/${prj}/codeblocks">

docs/doxygen_main_content.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ <h3>3.1 Basic Concepts</h3>
4747
<p>Given here are some of the basic concepts of the API.
4848
<ul>
4949
<li>The API works exclusively with pointers to dynamically allocated structures.
50-
For every structure type in the API a constructor/desctructor function pair always exists:
50+
For every structure type in the API a constructor/destructor function pair always exists:
5151
<code>X epr_create_X(...)</code> and <code>void epr_free_X(X)</code>. Example: For the type
5252
<code>EPR_SRecord*</code> these functions are <code>EPR_SRecord* epr_create_record(...)</code>
5353
and <code>void epr_free_record(EPR_SRecord*)</code>.
@@ -343,4 +343,4 @@ <h2>4. API Function Group Index</h2>
343343
in ENVISAT products. </td>
344344
</tr>
345345
</table>
346-
</div>
346+
</div>

src/api-test/api_tests.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ int write_raw_image(const char* output_dir, EPR_SProductId* product_id, const ch
1515
#endif /* if defined(WIN32) && defined(_DEBUG) */
1616

1717
/**
18-
* A program wich tests the epr-c-api by converting producing ENVI raster
18+
* A program which tests the epr-c-api by converting producing ENVI raster
1919
* information from dataset.
2020
*
2121
* It generates a *.raw data file for all rasters included in the

src/epr_api.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ void epr_set_log_handler(EPR_FLogHandler log_handler)
120120
/**
121121
* Sets the log level for the ENVISAT API. All logging
122122
* messages with a log level lower than the given one, will
123-
* be supressed, thus the log handler will not be called
123+
* be suppressed, thus the log handler will not be called
124124
* for such messages.
125125
*
126126
* @param log_level the new log level. All logging messages with a log level lower
127-
* than the given one, will be supressed
127+
* than the given one, will be suppressed
128128
* @return zero for success, an error code otherwise
129129
*/
130130
int epr_set_log_level(EPR_ELogLevel log_level)

0 commit comments

Comments
 (0)