Skip to content

Instantly share code, notes, and snippets.

@sharkinsspatial
sharkinsspatial / non_coordinate_dimensions.ipynb
Created January 30, 2025 16:55
non_coordinate_dimensions.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
  • coc-json 1.3.4 ~/.config/coc/extensions/node_modules/coc-json
  • coc-jedi 0.36.1 ~/.config/coc/extensions/node_modules/coc-jedi
  • coc-diagnostic 0.23.4 ~/.config/coc/extensions/node_modules/coc-diagnostic
  • @yaegassy/coc-ruff 0.6.3 ~/.config/coc/extensions/node_modules/@yaegassy/coc-ruff
  • coc-tsserver  1.9.12 ~/.config/coc/extensions/node_modules/coc-tsserver
{
"diagnostic-languageserver.filetypes": {
"python": "flake8",
"sh": "shellcheck"
},
"diagnostic-languageserver.enable": true,
"ruff.path": true,
"diagnostic.checkCurrentLine": true
}
import apache_beam as beam
from apache_beam.io import ReadFromText, WriteToText
from apache_beam.io.gcp import gcsio
# Define your GCS source and destination buckets and prefixes
source_bucket = 'your-source-bucket'
destination_bucket = 'your-destination-bucket'
source_prefix = 'source-directory/'
destination_prefix = 'destination-directory/'
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.