Ian Dees

Results 503 comments of Ian Dees

The next step for me is to figure out how to train a neural network/classifier (like [this](http://horatio.cs.nyu.edu/)) using satellite images rather than normal photographs. I haven't found any decent tutorials...

And I guess I should point out that I've tried using the same sort of method that Mapillary uses (I documented my setup [here](https://gist.github.com/iandees/f773749c47d088705199)) but that method relies on the...

> This change will likely not work on a raspi / other arm-based Linux processor, I believe? Yep, true. It looks like the solution to this would be to build...

Using [this translation](https://gist.github.com/iandees/d2ee3b56987333ca2f09) to transform [this data](http://www.spokanecity.org/download/gistransfer/pubdata/Address.zip).

Adding this method: ``` python def filterFeature(ogrfeature, fieldNames, reproject): AddressLab = None index = ogrfeature.GetFieldIndex('AddressLab') if index >= 0: AddressLab = ogrfeature.GetField(index) if not AddressLab: return None return ogrfeature ```...

Hmm, screwy SSL configuration on the server maybe?

Hi Travis! Good suggestion. We can investigate generating and posting geoparquet files. I know that Athena can load data from requester pays S3 buckets, but does BigQuery support import from...

What if I put it in a Cloudflare R2 bucket? Then it's about the same amount of miserable for everyone but at least it's free transit 🙂

No ETA yet, no. I got a bit stymied by finding a library to write Parquet files efficiently. Do you have any pointers, preferably in Node? cc @jwass

Figuring out a partitioning scheme seems relatively difficult here. Part of the reason we produce data as a single zipped blob of GeoJSON (and CSV before that) was that our...