Questions tagged [geotiff]

GeoTIFF is a public domain metadata standard which allows georeferencing information to be embedded within a TIFF file.

GeoTIFF is a public domain metadata standard which allows georeferencing information to be embedded within a TIFF file. The potential additional information includes map projection, coordinate systems, ellipsoids, datums, and everything else necessary to establish the exact spatial reference for the file. The GeoTIFF format is fully compliant with TIFF 6.0, so software incapable of reading and interpreting the specialized metadata will still be able to open a GeoTIFF format file

more information - http://en.wikipedia.org/wiki/GeoTIFF

505 questions
3
votes
0 answers

What are ways to approach working with GeoTiffs on Android?

Seeing that there are a few Android applications that claim they can load GeoTiff files, it is obviously possible, but how should I approach gaining support for working with GeoTiff files on an Android device? By support I want to be able to read in…
jdeloach
  • 71
  • 1
  • 1
  • 4
3
votes
2 answers

How to write coordinate to a TIF file using libgeotiff

I'm trying to create a tif file using the GeoTiff library. I managed to write all the data into a normal tif file using the standard TIF function of the library, but I can't figure out how to use the functions to add the coordinates of the…
PyrO_70
  • 33
  • 1
  • 4
3
votes
1 answer

LibTiff C# - Getting coordinates

I am using the LibTiff.NET library to load GeoTiff data in C# (inside Unity). **NOTE - I looked at GDAL also, but faced similar issues as outlined below, and would much prefer to use LibTiff if possible. I would ultimately like to be able to take a…
FacePuncher7
  • 139
  • 7
3
votes
2 answers

Python: how to convert geotiff to geopandas?

I have a geotiff file. import xarray as xr urbanData = xr.open_rasterio('myGeotiff.tif') plt.imshow(urbanData) Here the link to the file. I can convert the file as a dataframe with coordinates as points ur = xr.DataArray(urbanData,…
emax
  • 6,965
  • 19
  • 74
  • 141
3
votes
1 answer

Find Latitude/Longitude Coordinates of Every Pixel in a GeoTiff Image

I currently have a 171 x 171 image from a GeoTiff file (although in other cases, I might have much bigger images). My goal is to take each pixel in the image and convert to latitude/longitude pair. I am already able to convert the corners of the…
Vincent
  • 7,808
  • 13
  • 49
  • 63
3
votes
0 answers

Use Folder of GeoTiff files as Store

I have a large number of GeoTiff files in a folder. I want to be able to access them using Geoserver. The two options I have seen till now dont meet my exact requirement. ImageMosaic stitches all the images together. I need the ability to select…
3
votes
1 answer

Edit the coordinates of Geotiff file

I dont have much knowledge with GIS. I need help with editing the coordinates of a GeoTiff file. For eg, these are the corner coordinates of a file: Upper Left ( 62.0000000, 47.0000000) ( 62d 0' 0.00"E, 47d 0' 0.00"N) Lower Left ( 62.0000000, …
3
votes
2 answers

Overlay a GeoTIFF image with ipyleaflet

I want to use ImageOverlay function in ipyleaflet by below code, it only shows openstreetmap without geotiff layer, How can I do it? from ipyleaflet import Map, ImageOverlay m = Map(center=(31, 48), zoom=9) image =…
HMadadi
  • 391
  • 5
  • 22
3
votes
1 answer

is it possible to make a join between a geotiff image with a geopandas dataframe?

I have a shapfile and a geotiff image. import geopandas as gpd import rasterio from rasterio.plot import show df = gpd.read_file('myShape.shp') fileI = 'myFile.tiff' data = rasterio.open(fileI) show((data), cmap='terrain', ax=ax) p1 =…
emax
  • 6,965
  • 19
  • 74
  • 141
3
votes
1 answer

Python 3: How to change image data in GDAL?

I have a GeoTIFF image that contains a color table and a single raster band with 8-bit table keys, and that uses LZW compression, that I load with gdal.Open. I also have a numpy array containing 24-bit RGB-values (for a blurred version of the…
HelloGoodbye
  • 3,624
  • 8
  • 42
  • 57
3
votes
0 answers

GeoTIFF RGB as leaflet layer

I'd like to put a GeoTIFF RGB as a Leaflet overlay. I can read the GeoTIFF file in javascript but end up with 4 arrays (R,G,B,alpha) and don't know how to create an image out of these arrays. To elaborate in more detail: I use Pytroll to create a…
yngwaz
  • 769
  • 1
  • 9
  • 17
3
votes
0 answers

Is there a way to put geotif as input data in a tensor flow or keras in python?

I would like to use geotif image as input data in a tensor flow or keras. I know that tensorflow does not support tif. So I tried using gdal to make it into a raster image, but it failed. Please let me know if there is a way to put geotif in…
송준석
  • 991
  • 1
  • 16
  • 32
3
votes
2 answers

Add a relief (GEOtiff, .tif) to a ggplot of the swiss country borders ((polygon) shapefile, .shp)

I plotted the area of Switzerland (polygon shapefile) and added points (swiss weather stations) via coordinates. # Boundaries with data-points…
T. Grüter
  • 121
  • 7
3
votes
2 answers

How to get values for a pixel from a geoTIFF in R?

I'm trying to get RGB components from a geoTIFF file in R. The colours on the image correspond to different land classification types and I have a legend for each classification type in RGB components. I'm using the raster library. My code so far…
NM_
  • 1,887
  • 3
  • 12
  • 27
3
votes
1 answer

gdal_grid linear producing odd results

I Have a large Point shapefile (xyz, about 65,000 points) from a LiDAR las file and am trying to interpolate this onto a grid using gdal_grid: gdal_grid -ot Float64 -txe 422306.5970 422343.9970 -tye 4037022.9899 4036967.3399…
user2611761
  • 169
  • 1
  • 1
  • 11