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

推荐订阅源

L
Lohrmann on Cybersecurity
K
Kaspersky official blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Palo Alto Networks Blog
Scott Helme
Scott Helme
P
Proofpoint News Feed
量子位
S
Schneier on Security
AWS News Blog
AWS News Blog
N
Netflix TechBlog - Medium
T
Threat Research - Cisco Blogs
T
Threatpost
Cisco Talos Blog
Cisco Talos Blog
L
LINUX DO - 热门话题
T
The Exploit Database - CXSecurity.com
A
Arctic Wolf
S
Securelist
T
Tailwind CSS Blog
T
Tor Project blog
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
I
InfoQ
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
C
CXSECURITY Database RSS Feed - CXSecurity.com
C
Cisco Blogs
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tenable Blog
The GitHub Blog
The GitHub Blog
V
Vulnerabilities – Threatpost
V
Visual Studio Blog
博客园 - 叶小钗
F
Full Disclosure
Know Your Adversary
Know Your Adversary
N
News and Events Feed by Topic
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
The Last Watchdog
The Last Watchdog
H
Hacker News: Front Page
阮一峰的网络日志
阮一峰的网络日志
D
Docker
Spread Privacy
Spread Privacy
T
The Blog of Author Tim Ferriss
S
Security @ Cisco Blogs
Attack and Defense Labs
Attack and Defense Labs
MyScale Blog
MyScale Blog
腾讯CDC
Recent Announcements
Recent Announcements
Stack Overflow Blog
Stack Overflow Blog

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).