-
Notifications
You must be signed in to change notification settings - Fork 148
Upcoming Releases
Chahan M. Kropf edited this page Jan 14, 2022
·
113 revisions
due date: 2022-01-??
updated features:
- new function
get_admin1_geometries: return GeoDataFrame with geometries of admin 1 regions within given countries. - 'set_' method deprecated. New methods 'from_'.
- '+init CRS specs' deprecated.
- data-api client refactored:
- method names changed,
list_data_type_infosreturns only data types with active datasets (data types with only test data are hidden) -
list_dataset_infoshas a limit of returned datasets (default: 100) - concatenation of CLIMADA objects was removed from
get_hazardandget_exposures
- method names changed,
-
util.interpolate- refactoring: the module
util.interpolatewas remove and the methods therein were refactored and integrated inutil.coordinates. - a new method
_nearest_neighbor_euclideanwas added to find nearest neighbors with a k-d tree using Euclidean metric. - the default distance for
exposure.assign_centroidswas changed toeuclidean. This is faster thanhaversinefor (quasi-)gridded data but less accurate.
- refactoring: the module
-
TCTracks.from_ibtracs_netcdf: now stores selected agency for each track variable - Uncertainty Quantification
- renaming module from
uncertainty_quantificationtounsequa - updating of all plotting methods
- addition of helper methods for the most common uncertainty input parameters for exposures, hazard, impact functions, entities, measures.
- renaming module from
-
hazard.selectworks withextent. - addition of
hazard.select_tightto reduce a hazard to a box around anexposure.
due date: 2021-10-01
description: This is the first release of the core package after CLIMADA sources have been devided into climada_python (core) and climada_petals (extensions).
changed environment:
- cartopy 0.20 and higher are not accepted yet, because of their changes in the CRS objects.
- rasterio 1.2.7 an higher are not accepted yet, also because of their changes in the CRS objects.
updated features:
- uncertainty_quantification: a complete rewriting of the module and its API. Now it can do uncertainty and sensitivity analysis for impact and cost benefit. All the data is stored in a data class with pandas dataframes attributes. Several plotting methods have been added. Saving and loading from hdf5 files has been added.
- impacts_funcs: added two easily modifiable generic impact functions (a step and a sigmoid function) which can be used for a broad range of hazards and resolutions.
-
api_client: added convenience methods for creating CLIMADA objects from files accessible through the api,
get_hazard,get_exposuresandget_litpop,
and for collecting dataset information into data frames:into_datasets_df,into_files_df.
minor changes:
- litpop: fix of faulty shape handling for admin1 shapes with a hole (e.g. Brandenburg)
-
litpop: remove parameter
reproject_first(and functionality forreproject_first=Falsein_get_litpop_single_polygon) - litpop: minor improvements in readability and code efficiency, incl. better documentation
-
config: the
setup_loggingfunction was removed from the module, to change the logging level programmaticallyconfig.LOGGER.setLevelcan be used.