-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Ben Oxley edited this page May 8, 2023
·
4 revisions
Welcome to the atlas wiki!
flowchart TB
subgraph data
datastore(postgis datastore)
tilestore(s3 bucket tile store)
end
subgraph endpoints
querying(graphing and querying) --> datastore
end
subgraph external resources
pc(planetary computer)
end
subgraph tile pipeline
trig(scheduled trigger or new data trigger) --> ip
ip(image search) --> pc
ip --> tile(find tiles which are covered by new image)
tile --> tileprocessing(update pixels on tile where overlapping and data is good quality)
tilestore -- get previous tile state --> tileprocessing
tileprocessing -- store updated tile with most recent data --> tilestore
tileprocessing --> objdet(object detection)
objdet --> datastore
end