dwww Home | Show directory contents | Find package

R version 4.2.0 (2022-04-22) -- "Vigorous Calisthenics"
Copyright (C) 2022 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> suppressPackageStartupMessages(library(sf))
> 
> if (require(maps, quietly = TRUE)) {
+  m = map(xlim = c(4,9), ylim = c(48,55), fill = TRUE, plot = FALSE)
+  st_as_sf(m)
+  m = map(xlim = c(4,9), ylim = c(48,55), plot = FALSE)
+  st_as_sf(m, fill = FALSE)
+  st_as_sf(map(), fill = FALSE)
+  st_as_sf(map(fill = TRUE))
+  st_as_sf(map(), fill = FALSE, group = FALSE)
+  st_as_sf(map(fill = TRUE), group = FALSE)
+ }
Simple feature collection with 1627 features and 1 field
Geometry type: MULTIPOLYGON
Dimension:     XY
Bounding box:  xmin: -180 ymin: -85.19218 xmax: 190.2708 ymax: 83.59961
Geodetic CRS:  WGS 84
First 10 features:
                                  ID                           geom
1                              Aruba MULTIPOLYGON (((-69.89912 1...
2                        Afghanistan MULTIPOLYGON (((74.89131 37...
3                             Angola MULTIPOLYGON (((23.9665 -10...
4                     Angola:Cabinda MULTIPOLYGON (((12.21367 -5...
5                           Anguilla MULTIPOLYGON (((-63.00122 1...
6                            Albania MULTIPOLYGON (((20.06396 42...
7        Finland:Aland Islands:Foglo MULTIPOLYGON (((20.61133 60...
8       Finland:Aland Islands:Eckero MULTIPOLYGON (((19.6623 60....
9  Finland:Aland Islands:Fasta Aland MULTIPOLYGON (((19.98955 60...
10                           Andorra MULTIPOLYGON (((1.706055 42...
> 
> proc.time()
   user  system elapsed 
  1.891   0.063   1.947 

Generated by dwww version 1.15 on Sun Jun 30 09:29:23 CEST 2024.