Advertisement
Guest User

Untitled

a guest
May 5th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. S-JTSK_Krovak_East_North
  2. WKID: 5514 Authority: EPSG
  3.  
  4. Projection: Krovak
  5. False_Easting: 0.0
  6. False_Northing: 0.0
  7. Pseudo_Standard_Parallel_1: 78.5
  8. Scale_Factor: 0.9999
  9. Azimuth: 30.28813975277778
  10. Longitude_Of_Center: 24.83333333333333
  11. Latitude_Of_Center: 49.5
  12. X_Scale: -1.0
  13. Y_Scale: 1.0
  14. XY_Plane_Rotation: 90.0
  15. Linear Unit: Meter (1.0)
  16.  
  17. Geographic Coordinate System: GCS_S_JTSK
  18. Angular Unit: Degree (0.0174532925199433)
  19. Prime Meridian: Greenwich (0.0)
  20. Datum: D_S_JTSK
  21. Spheroid: Bessel_1841
  22. Semimajor Axis: 6377397.155
  23. Semiminor Axis: 6356078.962818189
  24. Inverse Flattening: 299.1528128
  25.  
  26. S-JTSK_Krovak_East_North
  27. WKID: 5514 Authority: EPSG
  28.  
  29. Projection: Krovak
  30. False_Easting: 0.0
  31. False_Northing: 0.0
  32. Pseudo_Standard_Parallel_1: 78.5
  33. Scale_Factor: 0.9999
  34. Azimuth: 30.28813975277778
  35. Longitude_Of_Center: 24.83333333333333
  36. Latitude_Of_Center: 49.5
  37. X_Scale: -1.0
  38. Y_Scale: 1.0
  39. XY_Plane_Rotation: 90.0
  40. Linear Unit: Meter (1.0)
  41.  
  42. Geographic Coordinate System: GCS_S_JTSK
  43. Angular Unit: Degree (0.0174532925199433)
  44. Prime Meridian: Greenwich (0.0)
  45. Datum: D_S_JTSK
  46. Spheroid: Bessel_1841
  47. Semimajor Axis: 6377397.155
  48. Semiminor Axis: 6356078.962818189
  49. Inverse Flattening: 299.1528128
  50.  
  51. library(sp)
  52. library(rgdal)
  53. library(rgeos)
  54. library(raster)
  55.  
  56. # import raster
  57. r1<-raster("F:/.../r1_2013.img")
  58.  
  59. #import shp
  60. d.shp <- readOGR(dsn = "F:/.../dummy_data_arcgis_r",
  61. layer = "np_by_manag")
  62.  
  63. > proj4string(r1) # RASTER
  64. [1] "+proj=krovak +lat_0=24.83333333333333 +lon_0=49.5 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=0,0,0,0,0,0,0 +units=m +no_defs"
  65.  
  66. > proj4string(d.shp) # SHAPEFILE
  67. [1] "+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +units=m +no_defs"
  68. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement