Nether Coordinate Reference: The Floor Rule and Radii
The Minecraft nether portal calculator runs on a handful of fixed numbers. This page lists all of them and works the one case that regularly goes wrong by hand.
The ratio
Overworld → Nether: Nether X = floor(Overworld X ÷ 8)
Nether Z = floor(Overworld Z ÷ 8)
Nether → Overworld: Overworld X = Nether X × 8
Overworld Z = Nether Z × 8
Y is never scaled. Height passes through unchanged in both directions. A portal at Y=120 in the Overworld looks for a portal at Y=120 in the Nether, not Y=15.
The floor rule, and why negatives break hand math
floor rounds down, toward negative infinity — not toward zero. For positive coordinates that is the same as dropping the decimal, so nothing looks unusual:
243 ÷ 8 = 30.375 → floor = 30 ✓ same as truncating
Negative coordinates behave differently:
−243 ÷ 8 = −30.375 → floor = −31, not −30
Every negative coordinate that is not an exact multiple of 8 lands one block lower than a calculator that simply drops the decimal. Worked cases:
| Overworld X | ÷ 8 | Nether X (floor) | Naive truncation |
|---|---|---|---|
| 800 | 100.000 | 100 | 100 |
| 243 | 30.375 | 30 | 30 |
| 0 | 0.000 | 0 | 0 |
| −1 | −0.125 | −1 | 0 ✗ |
| −7 | −0.875 | −1 | 0 ✗ |
| −8 | −1.000 | −1 | −1 |
| −9 | −1.125 | −2 | −1 ✗ |
| −1201 | −150.125 | −151 | −150 ✗ |
The pattern: Overworld 0 through 7 all map to Nether 0, but −1 through −8 all map to −1. The buckets sit fully below zero on the negative side rather than mirroring the positive side.
Round trips are not always exact
Because the trip in floors and the trip out multiplies, a round trip can land you a few blocks from where you started:
Overworld (803, −1201) → Nether (100, −151) → Overworld (800, −1208)
That is a drift of 3 blocks on X and 7 on Z. The maximum drift is 7 blocks per horizontal axis, and it is normal — not a sign that your portals have unlinked. The linking guide covers how to tell real drift from an actual duplicate.
Search radii
When you step through, the game scales your coordinate and then searches the destination dimension for an existing portal:
| Arriving in | Search radius | Area |
|---|---|---|
| Nether | 16 blocks | 32 × 32 |
| Overworld | 128 blocks | 256 × 256 |
If a portal is inside that radius, the game links to it. If not, it builds a new one — no warning, no message. That asymmetry is the source of most duplicate-portal problems, and it is why the tolerance feels tight going into the Nether and generous coming back.
Older Java versions used a Nether-side radius that did not correctly account for the 1:8 scale. That was corrected in Java Edition 1.16.2, and current Bedrock versions use the scale-aware radius too. Only relevant if you are troubleshooting a very old world.
Frame sizes
| Limit | Interior opening | Outer frame |
|---|---|---|
| Minimum | 2 × 3 | 4 × 5 |
| Maximum | 21 × 21 | 23 × 23 |
Any size between the two works. Corner blocks are optional — the game fills them in once the straight edges are complete, so a minimum portal needs 10 obsidian rather than 14.
Quick lookup
| Question | Number |
|---|---|
| Overworld blocks per Nether block | 8 |
| Y scaling | none |
| Nether search radius | 16 |
| Overworld search radius | 128 |
| Minimum Overworld portal spacing | 128 blocks |
| Minimum Nether portal spacing | 16 blocks |
| Max round-trip drift per axis | 7 blocks |
The two spacing minimums are derived rather than stated in game — how far apart do nether portals need to be shows where they come from.
What the numbers do not cover
The converted coordinate is the centre of the area the game searches, not a guaranteed arrival point. Terrain matters: a portal cannot generate inside bedrock or in a space with no safe footing, so an auto-generated portal may appear some distance from the exact scaled coordinate. Treat the output as a target to build toward, not a prediction of where the game will place something on its own.
References & Sources
- [1] Minecraft Wiki - Nether Portal (opens in new tab)
Supports: Coordinate ratio, portal search radii, linking behaviour, and frame-size limits.
Verified
- [2] Minecraft - Java Edition 1.16.2 Release Notes (opens in new tab)
Supports: First-party release notes for the version that corrected Nether-side portal search behaviour.
Verified
- [3] Minecraft Help - Official Support (opens in new tab)
Supports: First-party support documentation for current Java and Bedrock behaviour.
Verified