home / content

releases

5 rows where repo = 240815938

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: target_commitish, created_at (date), published_at (date)

id ▼ html_url author node_id tag_name target_commitish name draft prerelease created_at published_at body repo reactions mentions_count
23718653 https://github.com/simonw/shapefile-to-sqlite/releases/tag/0.1 simonw 9599 MDc6UmVsZWFzZTIzNzE4NjUz 0.1 master 0.1 0 0 2020-02-16T18:34:26Z 2020-02-17T00:28:27Z First working version. shapefile-to-sqlite 240815938    
23791351 https://github.com/simonw/shapefile-to-sqlite/releases/tag/0.2 simonw 9599 MDc6UmVsZWFzZTIzNzkxMzUx 0.2 master 0.2 0 0 2020-02-19T05:18:50Z 2020-02-19T05:20:39Z Now handles projections. Shapefile data is automatically projected to WGS 84 unless you pass `--crs=keep`, in which case the data is not projected. Pass `--crs=espg:2227` or similar to convert to another projection. #6 shapefile-to-sqlite 240815938    
30003346 https://github.com/simonw/shapefile-to-sqlite/releases/tag/0.3 simonw 9599 MDc6UmVsZWFzZTMwMDAzMzQ2 0.3 main 0.3 0 0 2020-08-22T00:29:28Z 2020-08-22T00:30:09Z - New `--spatial-index` option for creating a spatial index on the `geometry` column. #7 shapefile-to-sqlite 240815938    
30021121 https://github.com/simonw/shapefile-to-sqlite/releases/tag/0.4 simonw 9599 MDc6UmVsZWFzZTMwMDIxMTIx 0.4 main 0.4 0 0 2020-08-23T04:41:42Z 2020-08-23T04:42:13Z - `-c` option for extracting specified columns into separate lookup tables. #9 shapefile-to-sqlite 240815938    
30021547 https://github.com/simonw/shapefile-to-sqlite/releases/tag/0.4.1 simonw 9599 MDc6UmVsZWFzZTMwMDIxNTQ3 0.4.1 main 0.4.1 0 0 2020-08-23T05:47:24Z 2020-08-23T05:48:12Z - Fixed bug in `-c` option where foreign keys were not correctly created. #9 shapefile-to-sqlite 240815938    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [releases] (
   [html_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [author] INTEGER REFERENCES [users]([id]),
   [node_id] TEXT,
   [tag_name] TEXT,
   [target_commitish] TEXT,
   [name] TEXT,
   [draft] INTEGER,
   [prerelease] INTEGER,
   [created_at] TEXT,
   [published_at] TEXT,
   [body] TEXT,
   [repo] INTEGER REFERENCES [repos]([id])
, [reactions] TEXT, [mentions_count] INTEGER);
CREATE INDEX [idx_releases_repo]
    ON [releases] ([repo]);
CREATE INDEX [idx_releases_author]
    ON [releases] ([author]);
Powered by Datasette · Queries took 35.719ms