Questions tagged [csv]

A comma-separated values (CSV) file stores tabular data (numbers and text) in plain-text form.

In computing, a comma-separated values (CSV) file stores tabular data (numbers and text) in plain text. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator is the source of the name for this file format.

The CSV file format is not standardized. The basic idea of separating fields with a comma is clear, but that idea gets complicated when the field data may also contain commas or even embedded line-breaks. CSV implementations may not handle such field data, or they may use quotation marks to surround the field. Quotation does not solve everything: some fields may need embedded quotation marks, so a CSV implementation may include escape characters or escape sequences.

1381 questions
3
votes
1 answer

Polygon from CSV ∂x-∂y values

I am trying to make a map of a property fenceline based on a survey which gives precise bearings and distances between landmarks. Following recommendations in Creating points based on distance and bearing from survey point using QGIS?, I used a CSV…
Corvus
  • 41
  • 2
2
votes
2 answers

Failed to plot lat/long coordinates in decimal degree format using my QGIS 2.14.2

I am using QGIS 2.14.2 but whenever I try to plot my coordinates(Lat/Long; decimal degrees) from a CSV file, no coordinates are plotted. I even tried converting the coordinates from lat/long to UTM before re-uploading the CSV file but it still…
Mark
  • 41
  • 3
1
vote
3 answers

CSV file imported in QGIS 3.4 Madeira in map plots points at wrong places

I import a list of points from a CSV file: No of school east north School 1 98,431388 22,883583 School 5 97,608888 22,854361 School 6 97,901388 22,549805 on a map: but the points always end up on the wrong place. The points…
jopie br
  • 11
  • 1
1
vote
1 answer

Retrieving CSV from GitHub Repository for later use in ArcGIS Online?

I am trying to use data from GitHub at this location: https://github.com/factbook/factbook.csv/blob/master/data/c2147.csv Is there a way to convert this to csv or utilize in some other more interesting way? In the end, I would like to publish the…
SteveC
  • 745
  • 1
  • 6
  • 19
0
votes
1 answer

CSV file with longitude and latitude coordinates of continents borders

As the title says I need .csv with coordinates of the world's continents. All I can find on the Internet are coordinates of world cities, which is not exactly what I am searching for. I want to make a map like the one attached below. Does anyone…
Day Nam
  • 1
  • 2