惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Forbes - Security
Forbes - Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Palo Alto Networks Blog
Martin Fowler
Martin Fowler
T
Threatpost
D
Docker
S
Schneier on Security
M
MIT News - Artificial intelligence
G
Google Developers Blog
L
LINUX DO - 热门话题
J
Java Code Geeks
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
博客园 - Franky
C
Cyber Attacks, Cyber Crime and Cyber Security
K
Kaspersky official blog
Google DeepMind News
Google DeepMind News
N
News and Events Feed by Topic
V
Vulnerabilities – Threatpost
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
人人都是产品经理
人人都是产品经理
Spread Privacy
Spread Privacy
T
Tailwind CSS Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
C
CERT Recently Published Vulnerability Notes
The GitHub Blog
The GitHub Blog
Simon Willison's Weblog
Simon Willison's Weblog
NISL@THU
NISL@THU
MongoDB | Blog
MongoDB | Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
H
Heimdal Security Blog
Recorded Future
Recorded Future
云风的 BLOG
云风的 BLOG
SecWiki News
SecWiki News
P
Privacy International News Feed
P
Proofpoint News Feed
O
OpenAI News
B
Blog
腾讯CDC
F
Full Disclosure
Apple Machine Learning Research
Apple Machine Learning Research
T
Tor Project blog
H
Hacker News: Front Page
Project Zero
Project Zero
Hugging Face - Blog
Hugging Face - Blog
C
Cisco Blogs
S
Security Affairs

ktz.

Faking disks to look real with QEMU and Proxmox Control a Mitsubishi mini-split with ESPHome and Home Assistant for $10 The Enshittification of Plex 💩 I read a book. Codex is changing how I think about computers Factorio: Controlling Space Ship collector filters via circuit logic Factorio: Recycler Belt Stacking Was Solar Worth It? AppArmor's Awkward Aftermath Atop Proxmox 9 Unprivileged LXCs are just a bit annoying My Terminal and Editor Theming Proxmox 9 broke my docker containers What if..? Self-Hosted 150. Fin. How to enable Intel Quicksync on NixOS with a Supermicro X13SAE-F and an Intel i5-13600k
Factorio: Controlling imports from Space
Alex Kretzschmar · 2026-04-11 · via ktz.

Interplanetary logistics are a fundamental component of Factorio Space Age. It is puzzling to me why this particular aspect of the game feels half finished in what is otherwise a masterpiece of a game.

Anyway, the problem at hand is this. I want to import items from one planet to another planet. Not an endless supply, though. Just the right amount. We can achieve this by using combinators to read the current number of items in the logistics network on a specific surface (planet) and comparing that with values we set in a constant combinator. The delta between those two values is what we want to import.

The first step is to hook up a Roboport with a wire (red in my case)

Read the logistics network contents from a Roboport

We need to configure the Roboport to Read logistic network contents . This is so that all the items in the logistics network that this Roboport belongs to are made available to the circuit network.

Set "Read logistic network contents"

Now we configure an Arithmetic combinator to multiply everything from the input by -1 so we get a negative number and output it. Configure INPUT: EACH * -1 / OUTPUT: EACH.

Take each item in the logistics network and multiply by -1 to give us a negative number

Now we hook up the Arithmetic combinator output to a Decider combinator input (I used a red wire in my example). Now hook up a Constant combinator configured with the numbers of items you want to import to the Decider combinator input (I used a green wire in my example).

The decider combinator (top) essentially compares Red (logistics) to Green (I want X)

The constant combinator makes liberal use of logistics groups. These are such a great feature. Particularly if you're able to utilize 5x GROUP to make sure you have a nice buffer of certain items in one place without having to keep separate groups for different use cases.

Logistics groups are very useful

Now, we need to configure the Decider combinator to compare the Red inputs to the Green inputs and output the delta to send to space.

Before: We need to import 10k green transport belts

We configure the Decider combinator Conditions: EACH ≥ 1 - Outputs: EACH Input count. This subtracts the red signals from the green signals, so that anything with a positive number gets imported (if present on a Space ship).

For example, note above that we have a -100 Blue Circuit signal. Below I have added 50k green transport belts into my logistics network, which makes for an easy comparison to see the combinator in action.

After: We have a surplus of green transport belts so they are no longer an output (request)

The last step to actually send these requests to space ships is to hook up the output from the Decider to the Cargo landing pad building and set Set requests.

Note "Controlled by circuit network"

With this in place you will never over import a specific product from space again. I've found this really helped keep rockets on other planets available for other purposes instead of spamming ships full of the same items over and over and over. Especially in the early stages of space where your remote bases might be less capable.

Again though, I'm left wondering, why can't we just have interplanetary logistics networks? Make it an end game tech or something idk. But anyway, until we get that this will have to do.

Bonus Tip: What if you have multiple logistics networks on one surface?

Radars can "teleport" circuit signals from one radar to another on the same surface

Use Radars to hook them up! The remote side Roboport is set to the same `Read logistics network contents` and then the red wire is hooked up to the Radar. Then we import the radar signal (on the red wire) to the input of the Arithmetic combinator like we did before.

Happy Factories. Go Artemis II (this post published during reentry).