YongGoose commented on issue #943: URL: https://github.com/apache/incubator-baremaps/issues/943#issuecomment-2646661861
@bruno-scorzafave It looks like an exception occurred because the `public.osm_headers` table could not be found. This is likely due to attempting the **import before creating the table**, whereas the table should be created first before importing the data. To resolve this, try running the command: ``` baremaps workflow execute --file=create.js ``` to create the table, and then run below command again. ``` baremaps workflow execute --file=import.js ``` Following the [documentation(basemap' README)](https://github.com/apache/incubator-baremaps/blob/main/basemap/README.md) step by step should help you complete the process without any issues. PS. If you have any additional questions, please feel free to post them in this issue or on the `mailing lists`. We’ll be happy to help! - https://lists.apache.org/[email protected] --- There are plenty of issues where you can contribute to `apache/baremaps` by improving the `basemap`! You might find it helpful to start by rendering the map on the screen and then gradually working through the tasks. 🚀 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
