issue_comments
11 rows where issue = 109589162 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Support Two-Dimensional Coordinate Variables · 11 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
146885941 | https://github.com/pydata/xarray/issues/605#issuecomment-146885941 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0Njg4NTk0MQ== | jhamman 2443309 | 2015-10-09T14:24:12Z | 2015-10-09T14:24:12Z | MEMBER | closed via #608 and #610. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145903643 | https://github.com/pydata/xarray/issues/605#issuecomment-145903643 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTkwMzY0Mw== | jhamman 2443309 | 2015-10-06T15:37:21Z | 2015-10-06T15:37:21Z | MEMBER |
You are right, I had forgotten about this. My original statement has been amended accordingly. I think we're square on my points 2 and 3. Does my first point make sense? I'll open an issue regarding the coordinates encoding attribute. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145321209 | https://github.com/pydata/xarray/issues/605#issuecomment-145321209 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTMyMTIwOQ== | jhamman 2443309 | 2015-10-04T06:16:40Z | 2015-10-06T15:33:24Z | MEMBER | @shoyer - For the most part, I'm in agreement here with you. A few comments (reference I have two related PRs from today just to show which way we could go with all this: #606, #608. ncdump of domain file ``` Bash (xray_dev)Joes-iMac$ ncdump -h domain.lnd.wr50a_ar9v4.100920.nc netcdf domain.lnd.wr50a_ar9v4.100920 { dimensions: n = 56375 ; ni = 275 ; nj = 205 ; nv = 4 ; variables: double xc(nj, ni) ; xc:long_name = "longitude of grid cell center" ; xc:units = "degrees_east" ; xc:bounds = "xv" ; double yc(nj, ni) ; yc:long_name = "latitude of grid cell center" ; yc:units = "degrees_north" ; yc:bounds = "yv" ; double xv(nj, ni, nv) ; xv:long_name = "longitude of grid cell verticies" ; xv:units = "degrees_east" ; double yv(nj, ni, nv) ; yv:long_name = "latitude of grid cell verticies" ; yv:units = "degrees_north" ; int mask(nj, ni) ; mask:long_name = "domain mask" ; mask:note = "unitless" ; mask:coordinates = "xc yc" ; mask:comment = "0 value indicates cell is not active" ; double area(nj, ni) ; area:long_name = "area of grid cell in radians squared" ; area:coordinates = "xc yc" ; area:units = "radian2" ; double frac(nj, ni) ; frac:long_name = "fraction of grid cell that is active" ; frac:coordinates = "xc yc" ; frac:note = "unitless" ; frac:filter1 = "error if frac> 1.0+eps or frac < 0.0-eps; eps = 0.1000000E-10" ; frac:filter2 = "limit frac to [fminval,fmaxval]; fminval= 0.1000000E-02 fmaxval= 1.000000" ; // global attributes: :title = "CCSM domain data:" ; :Conventions = "CF-1.0" ; ``` xray representation of domain file ``` Python In [1]: import xray In [2]: xray.open_dataset('domain.lnd.wr50a_ar9v4.100920.nc') Out[2]: <xray.Dataset> Dimensions: (ni: 275, nj: 205, nv: 4) Coordinates: xc (nj, ni) float64 189.2 189.4 189.6 189.7 189.9 190.1 190.2 ... yc (nj, ni) float64 16.53 16.78 17.02 17.27 17.51 17.76 18.0 18.25 ... * ni (ni) int64 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... * nj (nj) int64 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... * nv (nv) int64 0 1 2 3 Data variables: xv (nj, ni, nv) float64 189.3 189.4 189.2 189.0 189.4 189.6 189.3 ... yv (nj, ni, nv) float64 16.33 16.58 16.74 16.49 16.58 16.82 16.98 ... mask (nj, ni) int32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... area (nj, ni) float64 2.579e-05 2.594e-05 2.611e-05 2.627e-05 ... frac (nj, ni) float64 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ... Attributes: title: CCSM domain data: Conventions: CF-1.0 ``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145403647 | https://github.com/pydata/xarray/issues/605#issuecomment-145403647 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTQwMzY0Nw== | shoyer 1217238 | 2015-10-05T00:00:39Z | 2015-10-05T00:00:39Z | MEMBER |
In the case of calendars, the information ends up on the There are two reasons why we do this sort of thing:
1. to make it unambiguously clear that we've "decoded" this information into xray's data model.
2. to ensure that the metadata can't get out of sync by being changed in one place but not another. For example, what would it mean if we unset These sort of ambiguous scenarios are the part that worry me. In particular, I worry that it leads us down a path of maintaining arbitrary metadata through operations. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145299557 | https://github.com/pydata/xarray/issues/605#issuecomment-145299557 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTI5OTU1Nw== | shoyer 1217238 | 2015-10-03T23:44:07Z | 2015-10-03T23:44:07Z | MEMBER | My hesitation with adding A better way to handle this might be to write a |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145211537 | https://github.com/pydata/xarray/issues/605#issuecomment-145211537 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTIxMTUzNw== | jhamman 2443309 | 2015-10-03T07:24:04Z | 2015-10-03T07:24:04Z | MEMBER | @shoyer - the idea of the coordinates convention is that we all ready know the x/y coordinate names. So we shouldn't need to supply them like this: In the plotting logic, we should just search to see if |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145190061 | https://github.com/pydata/xarray/issues/605#issuecomment-145190061 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTE5MDA2MQ== | shoyer 1217238 | 2015-10-03T00:54:50Z | 2015-10-03T00:54:50Z | MEMBER | These latitude and longitude coordinates can't be dimensions because they need to be 2D. A good example would be simulation data on some sort of projected grid (like in @jhamman's example above). |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145187110 | https://github.com/pydata/xarray/issues/605#issuecomment-145187110 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTE4NzExMA== | clarkfitzg 5356122 | 2015-10-03T00:20:56Z | 2015-10-03T00:20:56Z | MEMBER | Are the |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145186838 | https://github.com/pydata/xarray/issues/605#issuecomment-145186838 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTE4NjgzOA== | shoyer 1217238 | 2015-10-03T00:16:49Z | 2015-10-03T00:16:49Z | MEMBER | We could probably modify our |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145186432 | https://github.com/pydata/xarray/issues/605#issuecomment-145186432 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTE4NjQzMg== | jhamman 2443309 | 2015-10-03T00:11:32Z | 2015-10-03T00:11:32Z | MEMBER | Okay, somehow I missed that we're already doing this to some extent. I just ran across the code in @clarkfitzg - do you have any thoughts on how this could work? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 | |
145186217 | https://github.com/pydata/xarray/issues/605#issuecomment-145186217 | https://api.github.com/repos/pydata/xarray/issues/605 | MDEyOklzc3VlQ29tbWVudDE0NTE4NjIxNw== | shoyer 1217238 | 2015-10-03T00:08:04Z | 2015-10-03T00:08:04Z | MEMBER | We do support multi-dimensional coordinates already, and even read the It's definitely worth seeing if we can make |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Support Two-Dimensional Coordinate Variables 109589162 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [issue] INTEGER REFERENCES [issues]([id]) ); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);
user 3