diff --git a/docs/articles/geometry.html b/docs/articles/geometry.html index 1c3a2f2..81c8963 100644 --- a/docs/articles/geometry.html +++ b/docs/articles/geometry.html @@ -149,7 +149,7 @@

Load Spatial Data= "station", variables = vars$name) -> example_file

Now the NetCDF file looks like:

-
#> netcdf file10b47c04429d {
+
#> netcdf file474455fc4b11 {
 #> dimensions:
 #>  maxStrlen64 = 64 ;
 #>  station = 2 ;
diff --git a/docs/articles/polygon_intersection.html b/docs/articles/polygon_intersection.html
index e0a9ee2..24c5646 100644
--- a/docs/articles/polygon_intersection.html
+++ b/docs/articles/polygon_intersection.html
@@ -279,7 +279,7 @@ 

Area Weight Generation for Polygon #> 2 8 10 #> 3 9 17.0

Now let’s do the same thing but with -normalize = FALSE.

+normalize = TRUE.

 
 (blue_pink_norm_true <-
diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml
index ce6b11e..3ae4444 100644
--- a/docs/pkgdown.yml
+++ b/docs/pkgdown.yml
@@ -6,5 +6,5 @@ articles:
   ncdfgeom: ncdfgeom.html
   polygon_intersection: polygon_intersection.html
   timeseries: timeseries.html
-last_built: 2024-11-19T19:16Z
+last_built: 2024-11-19T20:06Z
 
diff --git a/docs/reference/write_attribute_data.html b/docs/reference/write_attribute_data.html
index d3a9ee4..07e1ca1 100644
--- a/docs/reference/write_attribute_data.html
+++ b/docs/reference/write_attribute_data.html
@@ -125,7 +125,7 @@ 

Examples

ncdump <-
system(paste("ncdump -h", example_file), intern = TRUE) cat(ncdump ,sep = "\n") }, silent = TRUE) -#> netcdf file6780300660d { +#> netcdf file7644230f5792 { #> dimensions: #> instance = 100 ; #> char = 12 ; diff --git a/docs/reference/write_geometry.html b/docs/reference/write_geometry.html index 5a2dcbe..fe16b34 100644 --- a/docs/reference/write_geometry.html +++ b/docs/reference/write_geometry.html @@ -124,7 +124,7 @@

Examples

ncdump <- system(paste("ncdump -h", hucPolygons_nc), intern = TRUE) cat(ncdump ,sep = "\n") }, silent = TRUE) -#> netcdf file678044595913 { +#> netcdf file7644489119ac { #> dimensions: #> instance = 2 ; #> char = 38 ; diff --git a/vignettes/polygon_intersection.Rmd b/vignettes/polygon_intersection.Rmd index 43c2e05..aed2df4 100644 --- a/vignettes/polygon_intersection.Rmd +++ b/vignettes/polygon_intersection.Rmd @@ -181,7 +181,7 @@ In practice, the above can be accomplished with: new_val = sum( (val * w * area) ) / sum(w * area))) ``` -Now let's do the same thing but with `normalize = FALSE`. +Now let's do the same thing but with `normalize = TRUE`. ```{r}