«rasterio» 태그된 질문

1
rasterio를 사용하여 단일 지점에서 픽셀 값 얻기
rasterio를 사용하여 래스터의 한 지점에서 단일 픽셀 값을 얻으려면 여기에 예가 있습니다. https://github.com/mapbox/rasterio/pull/275 그러나 래스터의 단일 지점에서 값을 추출하는 데 사용할 수있는 직접 API가 rasterio (및 cli가 아닌) 내에 있습니까? -- 편집하다 with rasterio.drivers(): # Read raster bands directly to Numpy arrays. # with rasterio.open('C:\\Users\\rit\\38ERP.tif') as src: x = (src.bounds.left …
14 python  numpy  rasterio 

1
rasterio로 S3 Sentinel-2 이미지 파일 읽기
rasterio를 사용하여 Sentinel-2 AWS .jp2 이미지 파일 (현재 Sinergise에서 호스팅하며 여기 에서 찾을 수 있음 ) 을 연 후 '액세스 거부'오류가 발생했습니다 . 내 코드는 다음과 같습니다 import rasterio access_key = '*****************' secret_access_key = '***********************' region_name = 'eu-central-1' Session = rasterio.env.Env(aws_access_key_id=access_key, aws_secret_access_key=secret_access_key, region_name=region_name) url = 's3://sentinel-pds/tiles/10/S/DG/2015/12/7/0/B01.jp2' with Session: with rasterio.open(url) …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.