Skip to content

Commit cc107ea

Browse files
committed
Use TLS link to osmcode.org.
1 parent 2b62511 commit cc107ea

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# osmcode.org Website
33

4-
This is the source code of the web site http://osmcode.org/ .
4+
This is the source code of the web site https://osmcode.org/ .
55

66
## Building
77

Diff for: _file_formats_manual/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
This directory contains the sources for the "OSM File Formats Manual".
33

4-
Read it at http://osmcode.org/file-formats-manual/ .
4+
Read it at https://osmcode.org/file-formats-manual/ .
55

Diff for: _libosmium_manual/05_using.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ paying for something you don't use.
1414
## Read the manuals
1515

1616
Before you do anything else we recommend you at least skim the [Libosmium
17-
concepts manual](http://osmcode.org/osmium-concepts/) and this
17+
concepts manual](https://osmcode.org/osmium-concepts/) and this
1818
manual. This will give you an overview of what's where and how Libosmium works.
1919

2020

2121
## Read the API reference
2222

23-
The [API reference](http://docs.osmcode.org/libosmium/) contains a
23+
The [API reference](https://docs.osmcode.org/libosmium/) contains a
2424
documentation of every class and function in Libosmium. It will tell you which
2525
`#include` directive you need where.
2626

Diff for: _libosmium_manual/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
This directory contains the sources for the "Libosmium Manual".
33

4-
Read it at http://osmcode.org/libosmium/manual.html .
4+
Read it at https://osmcode.org/libosmium/manual.html .
55

Diff for: _opl_file_format/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
This directory contains the sources for the "OPL File Format" manual.
33

4-
Read it at http://osmcode.org/opl-file-format/ .
4+
Read it at https://osmcode.org/opl-file-format/ .
55

Diff for: _osmium_concepts/01_introduction.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ title: Introduction
66
*"Simple things should be simple and complex things should be possible."* - Alan Kay
77

88
This manual introduces some high level concepts that users of the
9-
[Libosmium](http://osmcode.org/libosmium/) C++ library, the
10-
[PyOsmium](http://osmcode.org/pyosmium/) Python bindings and the
11-
[node-osmium](http://osmcode.org/node-osmium/) Node.JS bindings of this library
9+
[Libosmium](https://osmcode.org/libosmium/) C++ library, the
10+
[PyOsmium](https://osmcode.org/pyosmium/) Python bindings and the
11+
[node-osmium](https://osmcode.org/node-osmium/) Node.JS bindings of this library
1212
need to understand to work effectively. Read this first before you dive into
1313
the details of how to use the libraries.
1414

1515
While this manual was written for the users of those libraries it can also be
16-
helpful for users of the [Osmium command line tool](http://osmcode.org/osmium-tool/)
16+
helpful for users of the [Osmium command line tool](https://osmcode.org/osmium-tool/)
1717
and many other OSM tools, because it contains lots of general information about
1818
the OpenStreetMap data model.
1919

Diff for: _osmium_concepts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
This directory contains the sources for the "Osmium Concepts Manual".
33

4-
Read it at http://osmcode.org/osmium-concepts/ .
4+
Read it at https://osmcode.org/osmium-concepts/ .
55

Diff for: _osmium_tool_manual/01_introduction.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ chapter: 1
33
title: Introduction
44
---
55

6-
[Osmium](http://osmcode.org/osmium) is a versatile command line tool for
6+
[Osmium](https://osmcode.org/osmium) is a versatile command line tool for
77
working with OpenStreetMap data. It includes many useful functions for
88
manipulating OSM data and often outperforms similar tools. This manual will
99
introduce the tool, give a general overview and describe some use cases. For
1010
the nitty gritty detail consult the [manual
11-
pages](http://docs.osmcode.org/osmium/latest/).
11+
pages](https://docs.osmcode.org/osmium/latest/).
1212

1313
Osmium is Open Source and available under the GNU General Public License.
1414
It works and is regularly tested on Linux, Mac OSX, and Windows.
1515

16-
Osmium is based on the C++ library [libosmium](http://osmcode.org/libosmium)
16+
Osmium is based on the C++ library [libosmium](https://osmcode.org/libosmium)
1717
and it gets most of its functionality from it. If the command line tool doesn't
1818
do something you need, have a look at the library. Maybe you can use it to
1919
create a program that does what you want.

Diff for: _osmium_tool_manual/05_converting.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: OSM file formats and converting between them
66
Osmium supports all popular OSM file formats (and some more): XML, PBF,
77
O5M/O5C, OPL, and the already mentioned *debug* format. Some formats can
88
only be read or only be written. See the
9-
[osmium-file-formats](http://docs.osmcode.org/osmium/latest/osmium-file-formats.html)
9+
[osmium-file-formats](https://docs.osmcode.org/osmium/latest/osmium-file-formats.html)
1010
man page for details. All the text-based formats can be automatically
1111
(de)compressed if they use the `gzip` or `bzip2` compression.
1212

@@ -45,9 +45,9 @@ that unknown options are silently ignored, so if you mistype an option, you
4545
will not get an error message.
4646

4747
See the
48-
[osmium-file-formats](http://docs.osmcode.org/osmium/latest/osmium-file-formats.html)
48+
[osmium-file-formats](https://docs.osmcode.org/osmium/latest/osmium-file-formats.html)
4949
man page for all the details. Btw: all these file formats and options are
50-
implemented in the [libosmium library](http://osmcode.org/libosmium/), so most
50+
implemented in the [libosmium library](https://osmcode.org/libosmium/), so most
5151
libosmium-based programs will understand them in the same fashion.
5252

5353
While playing around with the command you might have noticed an error

Diff for: _osmium_tool_manual/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
This directory contains the sources for the "Osmium Tool Manual".
33

4-
Read it at http://osmcode.org/osmium-tool/manual.html .
4+
Read it at https://osmcode.org/osmium-tool/manual.html .
55

0 commit comments

Comments
 (0)