I have csv files with polygon data in geojson form where each line in the csv is similar to that shown below:
{"type": "Feature", "properties": {},"geometry": {"type": "Polygon","coordinates": [[[-80.86249607459162, 26.200956843221704], [-80.86270930028365, 26.200960980745556], [-80.86271370674712, 26.200778163395427], [-80.86250049530878, 26.200774026141644], [-80.86249607459162, 26.200956843221704]]]}}
I need to add these to a postgreSQL database (and ultimately a gdb) but I have no idea how. Please, any help? Sorry, new to postgreSQL.