This repository was archived by the owner on May 9, 2025. It is now read-only.
addon/53 Add Bus Stops Data Importer and Converter (Python & Java) - #54
Open
dawciobiel wants to merge 2 commits into
Open
addon/53 Add Bus Stops Data Importer and Converter (Python & Java)#54dawciobiel wants to merge 2 commits into
dawciobiel wants to merge 2 commits into
Conversation
Implemented a bus stops data importer that loads .json files into the bus_stops table in PostgreSQL. Developed a bus stops data converter to transform .json data into .sql format. Provided implementations in both Python 3 and Java. Ensured compatibility with the existing smart-route database schema. Added necessary scripts for usage. This tool facilitates seamless integration of external bus stop data into the project.
dawciobiel
requested review from
PawelNackiewicz,
RobertoJavaDev,
Slawek84PL,
cezarysanecki,
jkuznik,
krychuu01 and
magdalenakasper
February 28, 2025 13:48
cezarysanecki
previously approved these changes
Apr 10, 2025
Add functionality to clean table data before import. Implement import summary display. Add .env configuration functionality. Refactor file names.
dawciobiel
commented
Apr 11, 2025
dawciobiel
left a comment
Contributor
Author
There was a problem hiding this comment.
-
JsonToSqlConverter.java
This is still an alpha version.
Column names for thebus_stopstable should be changed to the appropriate ones.
Columnsdlug_geo,szer_georeplaced with a common columnlatitude. -
json-data-importer
Working version 1.1.0.
Imports data from a json file to a database table. -
json-to-sql-converter
Working alpha version 1.0.0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implemented a bus stops data importer that loads .json files into the bus_stops table in PostgreSQL.
Developed a bus stops data converter to transform .json data into .sql format.
Provided implementations in both Python 3 and Java.
Ensured compatibility with the existing smart-route database schema.
This tool facilitates seamless integration of external bus stop data into the project.
Closes #53