Skip to content

Commit

Permalink
update FAQ with osmosis error
Browse files Browse the repository at this point in the history
  • Loading branch information
treee111 committed Dec 3, 2023
1 parent 6a71bd3 commit 871e1a2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- [Usage of wahooMapsCreator](#usage-of-wahoomapscreator)
- [The tool stops but does not output an error](#the-tool-stops-but-does-not-output-an-error)
- [I have a Java error. "Java heap space - out of memory"](#i-have-a-java-error-java-heap-space---out-of-memory)
- [I have a Osmosis error. "Task type mw doesn't exist"](#i-have-a-osmosis-error-task-type-mw-doesnt-exist)
- [How can I migrate from v3.x.x to v4.x.x?](#how-can-i-migrate-from-v3xx-to-v4xx)
- [Generated maps](#generated-maps)
- [Where on my Wahoo device do I have to copy the maps?](#where-on-my-wahoo-device-do-i-have-to-copy-the-maps)
Expand Down Expand Up @@ -34,6 +35,24 @@ set JAVACMD_OPTIONS=-server -Xmx3G
```
3. A permanent workaround (in opposite to 2.) is making changes from this PR https://github.com/treee111/wahooMapsCreator/pull/171/files in the osmosis.bat file on your computer. This file located here: `wahooMapsCreatorData\_download\tooling_win\Osmosis\bin\osmosis.bat`.

### I have a Osmosis error. "Task type mw doesn't exist"
You might have osmosis installed in version 0.49.0 or 0.49.1 and might be using macOS or Linux. If yes, this error occurs during creation of the .map files:
```
org.openstreetmap.osmosis.core.OsmosisRuntimeException: Task type mw doesn't exist.
```

In these two versions 0.49.0 and 0.49.1, the feature we use for loading the mapwriter plugin was removed and just brought back in version 0.49.2.

You can list your version of osmosis on macOS/Linux with:
```
brew list osmosis
```

You can upgrade osmosis on macOS/Linux with:
```
brew upgrade osmosis
```

### How can I migrate from v3.x.x to v4.x.x?
You have to remove your existing environment:
```
Expand Down

0 comments on commit 871e1a2

Please sign in to comment.